summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-02-09 11:11:25 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-02-09 11:11:25 +0000
commit8e6619bf1dfc6797125b35bb7b4252d74c849724 (patch)
tree2e19fa48c8c3df5e8a384059dcec3515a65e7128 /firmware/drivers
parent0f6b3796d6143f36300e7f3136ba4ad73ab41913 (diff)
downloadrockbox-8e6619bf1dfc6797125b35bb7b4252d74c849724.tar.gz
rockbox-8e6619bf1dfc6797125b35bb7b4252d74c849724.zip
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
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd-h100.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-h100.c b/firmware/drivers/lcd-h100.c
index 8410d2ca6c..99b6cb6b79 100644
--- a/firmware/drivers/lcd-h100.c
+++ b/firmware/drivers/lcd-h100.c
@@ -91,7 +91,7 @@ static int curfont = FONT_SYSFIXED;
91static int xoffset = 0; /* needed for flip */ 91static int xoffset = 0; /* needed for flip */
92#endif 92#endif
93 93
94unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; 94unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH] __attribute__ ((section(".idata")));
95 95
96/* All zeros and ones bitmaps for area filling */ 96/* All zeros and ones bitmaps for area filling */
97static const unsigned char zeros[16] = { 97static const unsigned char zeros[16] = {