diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 02:29:22 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 02:29:22 +0100 |
commit | 85fad639f02176e2dbf47869abb227ad3f34672b (patch) | |
tree | 15d542e6b1dc92442cae4def085f3fcbbcefc44e /stage3/font.h | |
parent | 5d4670ce3e2f075eca07fc6ba8a2065db0e56df3 (diff) | |
download | cuddles-85fad639f02176e2dbf47869abb227ad3f34672b.tar.xz |
add clear command
Diffstat (limited to 'stage3/font.h')
-rw-r--r-- | stage3/font.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stage3/font.h b/stage3/font.h index 400fb3d..49b2817 100644 --- a/stage3/font.h +++ b/stage3/font.h @@ -7,6 +7,7 @@ void font_init(); void font_set_size(u16 size); void font_load_blob(const void *blob); void font_load_classic(); +void font_clear_screen(); void print(str line); void print_char(char c); |