NanoPayload

stage2/lcd.h

85:430ab64882a1
2015-12-05 Paul Boddie Write through uncached memory to test memory access. This avoids page faults but means that the TLB is not being set up properly. Still, ERL can now be cleared. stage2-non-pic
     1 #ifndef __LCD_H__     2 #define __LCD_H__     3      4 /* Initialisation functions. */     5      6 void lcd_init(void);     7      8 /* Output functions. */     9     10 void test_pixel(unsigned short h, unsigned short v);    11 void clear_pixel(unsigned short h, unsigned short v);    12     13 void test_pattern();    14     15 #endif /* __LCD_H__ */