build system refresh
This commit is contained in:
@@ -16,7 +16,6 @@ static uint32_t console_text_color;
|
||||
static uint32_t console_backgrnd_color;
|
||||
|
||||
static void write_vga_char(char c) {
|
||||
print_serial("write_vga_char invoked\r\n");
|
||||
uint32_t vga_pitch = vga_get_pitch();
|
||||
uint8_t* glyph = (uint8_t*)font->glyphs + (c * font->hdr->charsz);
|
||||
|
||||
@@ -71,7 +70,6 @@ void console_putchar(char c) {
|
||||
if (!font) return;
|
||||
|
||||
if (c == '\n') {
|
||||
print_serial("\r\n");
|
||||
console_col = 0;
|
||||
console_row++;
|
||||
if (console_row >= console_height) {
|
||||
@@ -80,7 +78,6 @@ void console_putchar(char c) {
|
||||
return;
|
||||
}
|
||||
|
||||
write_serial(c);
|
||||
write_vga_char(c);
|
||||
|
||||
console_col++;
|
||||
|
||||
Reference in New Issue
Block a user