11 lines
272 B
C
Raw Normal View History

2023-01-07 02:15:21 -05:00
#include "vgabuf.h"
volatile uint32_t mono_palette = 0;
2023-01-07 02:15:21 -05:00
// The currently programmed character generator ROM for text mode
uint8_t character_rom[2048];
uint8_t terminal_character_rom[2048];
2023-01-07 02:15:21 -05:00
volatile uint8_t terminal_row = 0;
volatile uint8_t terminal_col = 0;