gbemu/lib/cpu.c

10 lines
119 B
C

#include <cpu.h>
void cpu_init() {
}
bool cpu_step() {
printf("Cpu not yet implemented.\n");
return false;
}