diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-09 11:11:25 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-09 11:11:25 +0000 |
| commit | 8e6619bf1dfc6797125b35bb7b4252d74c849724 (patch) | |
| tree | 2e19fa48c8c3df5e8a384059dcec3515a65e7128 | |
| parent | 0f6b3796d6143f36300e7f3136ba4ad73ab41913 (diff) | |
| download | rockbox-8e6619bf1dfc6797125b35bb7b4252d74c849724.zip rockbox-8e6619bf1dfc6797125b35bb7b4252d74c849724.tar.gz rockbox-8e6619bf1dfc6797125b35bb7b4252d74c849724.tar.bz2 rockbox-8e6619bf1dfc6797125b35bb7b4252d74c849724.tar.xz | |
iRiver: faster screen updates with lcd frame buffer in IRAM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5864 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/lcd-h100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-h100.c b/firmware/drivers/lcd-h100.c index 8410d2c..99b6cb6 100644 --- a/firmware/drivers/lcd-h100.c +++ b/firmware/drivers/lcd-h100.c @@ -91,7 +91,7 @@ static int curfont = FONT_SYSFIXED; static int xoffset = 0; /* needed for flip */ #endif -unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; +unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH] __attribute__ ((section(".idata"))); /* All zeros and ones bitmaps for area filling */ static const unsigned char zeros[16] = { |