jankos/framebuffer.h
2019-01-18 12:46:49 -08:00

7 lines
141 B
C

#define COLUMNS 80
#define ROWS 25
#define AREA ( COLUMNS * ROWS )
void write_cell(unsigned cell, char c , char fg, char bg);
void hello();