Espresso 0.0.1b

This commit is contained in:
2025-06-27 14:48:06 -05:00
parent fca025a9bf
commit c336584114
39 changed files with 2676 additions and 936 deletions

View File

@ -84,7 +84,7 @@ void terminal_putchar(const char c)
{
terminal_row -= 1;
if (terminal_row <= -1)
if (terminal_row == (size_t)-1)
{
terminal_row = 0;
}
@ -246,3 +246,4 @@ unsigned char terminal_get_shifted(unsigned char uc)
return '\0';
}