2008-12-03 05:40:16 +00:00
|
|
|
#ifndef BORG_HW_H
|
|
|
|
#define BORG_HW_H
|
|
|
|
|
2012-05-07 06:56:00 +00:00
|
|
|
// LINEBYTES holds the number of bytes per line within the frame buffer (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
|