diff options
Diffstat (limited to 'common/lcd.c')
| -rw-r--r-- | common/lcd.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/common/lcd.c b/common/lcd.c index b09e45fc1..874f18220 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -101,9 +101,15 @@ static void lcd_setbgcolor(int color);  static int lcd_color_fg;  static int lcd_color_bg; +int lcd_line_length;  char lcd_is_enabled = 0; +static short console_col; +static short console_row; + +static void *lcd_console_address; +  static char lcd_flush_dcache;	/* 1 to flush dcache after each lcd update */ |