mirror of
https://github.com/LemonBoy/grape.git
synced 2024-12-01 19:50:26 +00:00
11 lines
128 B
C
11 lines
128 B
C
|
#ifndef CPU_H
|
||
|
#define CPU_H
|
||
|
|
||
|
int cpu_run (int run_cycles);
|
||
|
void cpu_reset ();
|
||
|
void cpu_nmi ();
|
||
|
extern u32 cpu_regs[6];
|
||
|
|
||
|
|
||
|
#endif
|