Base version of the floppicator

This commit is contained in:
hkz 2025-09-01 16:40:51 +02:00
commit 2abdb84acc
8 changed files with 181 additions and 22 deletions

View file

@ -13,6 +13,8 @@ void initialize_display_buffer(void);
void clear_display_buffer(void);
void draw_number(uint16_t n, uint8_t len, uint8_t x, uint8_t y);
void clear_box(uint8_t w, uint8_t h, uint8_t off_x, uint8_t off_y);
void draw_char(uint8_t x, uint8_t y, uint8_t invert, uint8_t ch);
void draw_chars(uint8_t x, uint8_t y, uint8_t invert, uint8_t *buf, uint8_t len);
uint8_t convert_string(uint8_t *buf, uint8_t buf_len, char *str);
#endif /* _GRAPHICS_HEADER_ */