From 6b970e749e720404d08cec565fe0157d20fdeaef Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 28 Apr 2016 14:58:38 +0100 Subject: First pass of compilable 65c816 mode. --- src/casm.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/casm.c') diff --git a/src/casm.c b/src/casm.c index 6733ad5..2643a02 100644 --- a/src/casm.c +++ b/src/casm.c @@ -47,6 +47,7 @@ #include "z80.h" #include "6502.h" #include "gbcpu.h" +#include "65c816.h" /* ---------------------------------------- MACROS @@ -107,6 +108,12 @@ static const CPU cpu_table[]= LSB_Word, Init_GBCPU, Options_GBCPU, SetOption_GBCPU, Handler_GBCPU }, + { + "65c816", + 0x10000, + LSB_Word, + Init_65c816, Options_65c816, SetOption_65c816, Handler_65c816 + }, {NULL} }; -- cgit v1.2.3