mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-04 20:05:57 +00:00
14 lines
364 B
C
14 lines
364 B
C
|
|
// FONT FUNCTIONS
|
|
#define LOCHAR 0x20 // lowest character value in font
|
|
#define HICHAR 0x7f // highest character value in font
|
|
unsigned char __at(0x3d00) font8x8[HICHAR-LOCHAR+1][8];
|
|
|
|
void init_stdio(void);
|
|
int putchar(int ch);
|
|
void beep(int divisor, int duration);
|
|
int keyscan(void);
|
|
void waitkey(int frames);
|
|
void setpixel(unsigned char x, unsigned char y);
|
|
|