Cleaned up calling convention of write_to_cell to be clean in the C, cleared away some cruft
12 lines
232 B
C
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);
|
|
}
|