desparate to get ata reads to work
This commit is contained in:
@@ -63,6 +63,13 @@ void vga_putchar(char c)
|
||||
return;
|
||||
}
|
||||
|
||||
if (c == '\t') {
|
||||
for (int i = 0; i < 4; i++) {
|
||||
vga_putchar(' ');
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
const size_t index = terminal_row * VGA_WIDTH + terminal_column;
|
||||
terminal_buffer[index] = vga_entry(c, terminal_color);
|
||||
if (++terminal_column == VGA_WIDTH) {
|
||||
|
||||
Reference in New Issue
Block a user