gbemu/lib/cpu.c

10 lines
119 B
C
Raw Normal View History

2025-01-30 14:30:19 -07:00
#include <cpu.h>
void cpu_init() {
}
bool cpu_step() {
printf("Cpu not yet implemented.\n");
return false;
}