diff options
author | Marvin Borner | 2019-10-02 20:01:17 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-02 20:01:17 +0200 |
commit | 3238ced93283a167675f20244ec9fd6310eb8002 (patch) | |
tree | 288078ca30e9e4b5d5ba9a178315cb5ee9f6a2d8 /src/kernel/graphics/graphics.h | |
parent | 682c47a98844ffec3f3129160e9cdb98ba129989 (diff) |
Finally fixed VESA auto resolution finder
This was quite hard and strange but it works now!
Diffstat (limited to 'src/kernel/graphics/graphics.h')
-rw-r--r-- | src/kernel/graphics/graphics.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kernel/graphics/graphics.h b/src/kernel/graphics/graphics.h index e20d1ed..118fe50 100644 --- a/src/kernel/graphics/graphics.h +++ b/src/kernel/graphics/graphics.h @@ -34,6 +34,12 @@ void terminal_clear(); void terminal_write_string(const char *data); /** + * Write an integer to the terminal + * @param data The integer that should be written + */ +void terminal_write_number(int data); + +/** * Put a new char at the x+1 cursor position and * handle according events (e.g. overflow, linebreak) * @param c The character (can also be \n or \r) |