Files
low-level-programming/include.c
greg 6c934dc845 Make the c variables be sane
Cleaned up calling convention of write_to_cell to be clean in the C,
cleared away some cruft
2015-09-17 22:29:08 -07:00

12 lines
232 B
C

extern int write_to_coord(int x, int y, int x86_specifier);
int get_vram_offset() {
return 0xb8000;
}
void c_entry() {
int space = 0x26 | (0xf0 << 8); //ascii ampersand white on black
write_to_coord(22,70, space);
}