Added c64dtv accelerator code and documentation.

This commit is contained in:
Marco van den Heuvel
2018-04-14 10:40:13 -07:00
parent a10f36c837
commit 6076316f38
8 changed files with 238 additions and 3 deletions

View File

@@ -1,9 +1,13 @@
CL ?= cl65
all: c64-scpu-test.prg c128-scpu-test.prg
all: c64-scpu-test.prg c128-scpu-test.prg c64dtv-test.prg
c64-scpu-test.prg: c64-c128-scpu-test.c
$(CL) -t c64 c64-c128-scpu-test.c -o c64-scpu-test.prg
c128-scpu-test.prg: c64-c128-scpu-test.c
$(CL) -t c128 c64-c128-scpu-test.c -o c128-scpu-test.prg
c64dtv-test.prg: c64dtv-test.c
$(CL) -t c64 c64dtv-test.c -o c64dtv-test.prg

View File

@@ -0,0 +1,8 @@
/* C64DTV accelerator test code. */
#define ACC_DETECT detect_c64dtv
#define ACC_GET_SPEED get_c64dtv_speed
#define ACC_SET_SPEED set_c64dtv_speed
#define ACC_NAME "C64DTV"
#include "turbo-test.c"