1
0
Fork 0
forked from len0rd/rockbox

Moved the LCD frame buffer back to DRAM

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2212 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-09-06 12:30:30 +00:00
parent 9381765209
commit 8b01f614a8
2 changed files with 2 additions and 2 deletions

View file

@ -550,7 +550,7 @@ void lcd_set_contrast(int val)
* *
* Memory copy of display bitmap * Memory copy of display bitmap
*/ */
unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8] __attribute__ ((section (".idata"))); unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
static int font=0; static int font=0;
static int xmargin=0; static int xmargin=0;

View file

@ -96,7 +96,7 @@ extern void lcd_double_height (bool on);
/* /*
* Memory copy of display bitmap * Memory copy of display bitmap
*/ */
extern unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8] __attribute__ ((section (".idata"))); extern unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
extern void lcd_putsxy(int x, int y, unsigned char *string, int font); extern void lcd_putsxy(int x, int y, unsigned char *string, int font);
extern void lcd_setfont(int font); extern void lcd_setfont(int font);