jankos/framebuffer.h
2019-01-16 15:51:02 -08:00

7 lines
153 B
C

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