bradgrantham-apple2e/fake6502.h
Brad Grantham c52cb2939e Fix CX00 ROMs, implement alternate 6502
Add fake6502.c as alternate CPU implementation
Set up all regions in CX00 with softswitches according to my understanding of "Inside the Apple //e"
2016-11-11 15:18:08 -08:00

13 lines
175 B
C

#include <stdint.h>
extern "C" {
void reset6502();
void nmi6502();
void irq6502();
void exec6502(uint32_t tickcount);
void step6502();
void hookexternal(void *funcptr);
};