Initial Project Setup

This commit is contained in:
2025-01-30 14:30:19 -07:00
parent a47ca7dcbf
commit 7e0b305d17
50 changed files with 3227 additions and 0 deletions

10
lib/cpu.c Normal file
View File

@ -0,0 +1,10 @@
#include <cpu.h>
void cpu_init() {
}
bool cpu_step() {
printf("Cpu not yet implemented.\n");
return false;
}