diff options
author | 2023-05-11 14:02:16 -0400 | |
---|---|---|
committer | 2023-05-12 04:02:16 +1000 | |
commit | 430be796c67b7efa08ca65a7b71e4205ff91eaaa (patch) | |
tree | 716fa3c8caa22dd6574314b35994d86d630db887 /src/osd | |
parent | db15fba4422269327217d554e2d06a21d3f873b4 (diff) |
sinclair/sprinter.cpp: Added Sprinter Sp2000 enhanced Spectrum clone. (#11018)
cpu/z80: Added support for variants with address translation and implemented Z84C015 chip selects.
New working clones
-------------------
Peters Plus, Ivan Mak Sprinter Sp2000
Diffstat (limited to 'src/osd')
-rw-r--r-- | src/osd/modules/debugger/debuggdbstub.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/osd/modules/debugger/debuggdbstub.cpp b/src/osd/modules/debugger/debuggdbstub.cpp index cbaeccb4bfa..409b6fa3bbb 100644 --- a/src/osd/modules/debugger/debuggdbstub.cpp +++ b/src/osd/modules/debugger/debuggdbstub.cpp @@ -477,6 +477,7 @@ static const std::map<std::string, const gdb_register_map &> gdb_register_maps = { "m68020pmmu", gdb_register_map_m68020pmmu }, { "m68000", gdb_register_map_m68000 }, { "z80", gdb_register_map_z80 }, + { "z84c015", gdb_register_map_z80 }, { "m6502", gdb_register_map_m6502 }, { "rp2a03", gdb_register_map_m6502 }, { "m6809", gdb_register_map_m6809 }, |