Scheduler and multiple threads

This commit is contained in:
2022-01-10 23:31:23 +01:00
parent 9a68961a64
commit 576a32d92f
8 changed files with 123 additions and 45 deletions

View File

@@ -105,7 +105,7 @@ char font[95][16] = {
gfx_context *term_fb;
static int setup = 0;
static void drawCharacter(gfx_context *ctx, uint64_t x, uint64_t y, uint32_t clr_fg, uint32_t clr_bg, char c)
void drawCharacter(gfx_context *ctx, uint64_t x, uint64_t y, uint32_t clr_fg, uint32_t clr_bg, char c)
{
char *chr = c ? font[(int)c-0x20]: font[0];