2008-12-03 05:40:16 +00:00
|
|
|
#ifndef BORG_HW_H
|
|
|
|
#define BORG_HW_H
|
|
|
|
|
2011-08-17 01:16:25 +00:00
|
|
|
// LINEBYTES holds the amount of bytes per line within the framebuffer (pixmap)
|
2008-12-03 05:40:16 +00:00
|
|
|
#define LINEBYTES (((NUM_COLS-1)/8)+1)
|
|
|
|
|
|
|
|
|
|
|
|
extern unsigned char pixmap[NUMPLANE][NUM_ROWS][LINEBYTES];
|
|
|
|
|
|
|
|
void watchdog_enable();
|
|
|
|
void borg_hw_init();
|
|
|
|
void timer0_off();
|
|
|
|
|
|
|
|
#endif
|