diff options
Diffstat (limited to 'src/casm.c')
-rw-r--r-- | src/casm.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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} }; |