Happy times: things work on real hardware!

This commit is contained in:
2019-06-02 21:34:18 -07:00
parent a7f1ffc1b5
commit 1cc2f7adf4
27 changed files with 9353 additions and 9057 deletions

View File

@@ -61,6 +61,10 @@ private:
void buffer_init();
void set_dirty(unsigned int y);
const struct glyph *glyph_for_char(const struct font *font, char c);
void clear_glyph_aligned(int x_off, int y_off, const struct font * font, const struct glyph *g);
void clear_glyph_unaligned(int x_off, int y_off, const struct font * font, const struct glyph *g);
void write_glyph_aligned(int x_off, int y_off, const struct font * font, const struct glyph *g);
void write_glyph_unaligned(int x_off, int y_off, const struct font * font, const struct glyph *g);
static constexpr uint32_t DISPLAY_WIDTH = 144;
static constexpr uint32_t DISPLAY_HEIGHT = 168;