beginning ppu

This commit is contained in:
2025-02-01 00:48:49 -07:00
parent 5206c3871e
commit f4cbfd09c8
25 changed files with 683 additions and 43 deletions

View File

@ -15,5 +15,6 @@ typedef uint64_t u64;
#define BETWEEN(a, b, c) ((a >= b) && (a <= c))
void delay(u32 ms);
u32 get_ticks();
#define NO_IMPL { fprintf(stderr, "NOT YET IMPLEMENTED\n"); exit(-5); }