summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-h100.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-h100.c')
-rw-r--r--firmware/drivers/lcd-h100.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-h100.c b/firmware/drivers/lcd-h100.c
index 99b6cb6b79..d27a62da41 100644
--- a/firmware/drivers/lcd-h100.c
+++ b/firmware/drivers/lcd-h100.c
@@ -91,7 +91,11 @@ 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] __attribute__ ((section(".idata"))); 94unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]
95#ifndef SIMULATOR
96 __attribute__ ((section(".idata")))
97#endif
98 ;
95 99
96/* All zeros and ones bitmaps for area filling */ 100/* All zeros and ones bitmaps for area filling */
97static const unsigned char zeros[16] = { 101static const unsigned char zeros[16] = {