Espresso 0.0.1d
This commit is contained in:
@ -247,3 +247,11 @@ unsigned char terminal_get_shifted(unsigned char uc)
|
||||
return '\0';
|
||||
}
|
||||
|
||||
void terminal_set_cursor(uint16_t row, uint16_t column)
|
||||
{
|
||||
if (row < VGA_HEIGHT && column < VGA_WIDTH)
|
||||
{
|
||||
terminal_row = (size_t)row;
|
||||
terminal_column = (size_t)column;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user