WIP: Framebuffer partial support, cursor & scoll TODO

This commit is contained in:
xamidev
2024-08-20 13:38:44 +02:00
parent 52a92a5358
commit f8eb658c33
7 changed files with 37 additions and 26 deletions

View File

@@ -15,7 +15,7 @@ void print_grid(const unsigned char grid[X][Y])
//(grid[i][j] == LIVE) ? putc(42) : putc(32);
if (grid[i][j] == LIVE) {
serial_printf(3, "alive");
colorputc(32, 120);
//colorputc(32, 120);
} else {
putc(32);
}

View File

@@ -18,7 +18,7 @@ void program_rainbow()
for (int i=0; i<COLORS; i++)
{
colorputs(input_buffer, i);
//colorputs(input_buffer, i);
puts("\n");
}
}