Added C65/C64DX accelerator code and documentation.

This commit is contained in:
Marco van den Heuvel
2018-04-27 14:22:41 -07:00
parent 47e4b36180
commit 11629bcf99
8 changed files with 254 additions and 1 deletions

View File

@@ -1,7 +1,8 @@
CL ?= cl65
all: c64-scpu-test.prg c128-scpu-test.prg c64dtv-test.prg \
c64-c128-test.prg c128-test.prg chameleon-test.prg
c64-c128-test.prg c128-test.prg chameleon-test.prg \
c65-test.prg
c64-scpu-test.prg: c64-c128-scpu-test.c
$(CL) -t c64 c64-c128-scpu-test.c -o c64-scpu-test.prg
@@ -20,3 +21,6 @@ c128-test.prg: c64-c128-test.c
chameleon-test.prg: chameleon-test.c
$(CL) -t c64 chameleon-test.c -o chameleon-test.prg
c65-test.prg: c65-test.c
$(CL) -t c64 c65-test.c -o c65-test.prg

View File

@@ -0,0 +1,8 @@
/* C65/C64DX in C64 mode accelerator test code. */
#define ACC_DETECT detect_c65
#define ACC_GET_SPEED get_c65_speed
#define ACC_SET_SPEED set_c65_speed
#define ACC_NAME "C65"
#include "turbo-test.c"