.ttf fonts (beta)

This commit is contained in:
boreddevnl
2026-03-03 20:34:50 +01:00
parent 8b3ca448ed
commit 3c7d36a50f
42 changed files with 5841 additions and 78 deletions

View File

@@ -41,10 +41,13 @@ typedef struct process {
void *kernel_stack_alloc; // Original pointer from kmalloc for freeing
void *user_stack_alloc; // Original pointer from kmalloc for freeing
bool is_terminal_proc; // Was this process started from the shell?
bool is_terminal_proc;
struct process *next;
} process_t;
uint8_t fpu_state[512] __attribute__((aligned(16)));
bool fpu_initialized;
} __attribute__((aligned(16))) process_t;
void process_init(void);
void process_create(void* entry_point, bool is_user);