mirror of
https://github.com/bradgrantham/apple2e.git
synced 2025-01-01 03:31:18 +00:00
c52cb2939e
Add fake6502.c as alternate CPU implementation Set up all regions in CX00 with softswitches according to my understanding of "Inside the Apple //e"
13 lines
175 B
C
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);
|
|
|
|
};
|