Added C64 Chameleon accelerator code and documentation.

This commit is contained in:
Marco van den Heuvel
2018-04-25 12:53:29 -07:00
parent fc61bc79c5
commit f2e46f0fdf
8 changed files with 287 additions and 2 deletions

View File

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

View File

@@ -0,0 +1,8 @@
/* C64 Chameleon accelerator test code. */
#define ACC_DETECT detect_chameleon
#define ACC_GET_SPEED get_chameleon_speed
#define ACC_SET_SPEED set_chameleon_speed
#define ACC_NAME "Chameleon cartridge"
#include "turbo-test.c"