diff options
author | 2024-01-20 07:00:08 -0800 | |
---|---|---|
committer | 2024-01-21 02:00:08 +1100 | |
commit | 87460c8707097b41cf6aa0445f116ec9385241a3 (patch) | |
tree | a27d5c66018dd2f296770e594a01269345424746 /src/osd | |
parent | 072720e539a7d3fd55560441cad83ae4286871b6 (diff) |
debugger/debuggdbstub.cpp: Added aliases for some MOS 6502-compatible CPUs. (#11953)
Allows m6507, m6510, m65c02, m65ce02 and w65c02s to be debugged with GDB stub.
Diffstat (limited to 'src/osd')
-rw-r--r-- | src/osd/modules/debugger/debuggdbstub.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/osd/modules/debugger/debuggdbstub.cpp b/src/osd/modules/debugger/debuggdbstub.cpp index 409b6fa3bbb..5ac83131abb 100644 --- a/src/osd/modules/debugger/debuggdbstub.cpp +++ b/src/osd/modules/debugger/debuggdbstub.cpp @@ -479,7 +479,12 @@ static const std::map<std::string, const gdb_register_map &> gdb_register_maps = { "z80", gdb_register_map_z80 }, { "z84c015", gdb_register_map_z80 }, { "m6502", gdb_register_map_m6502 }, + { "m6507", gdb_register_map_m6502 }, + { "m6510", gdb_register_map_m6502 }, + { "m65c02", gdb_register_map_m6502 }, + { "m65ce02", gdb_register_map_m6502 }, { "rp2a03", gdb_register_map_m6502 }, + { "w65c02s", gdb_register_map_m6502 }, { "m6809", gdb_register_map_m6809 }, { "score7", gdb_register_map_score7 }, { "nios2", gdb_register_map_nios2 }, |