From 87460c8707097b41cf6aa0445f116ec9385241a3 Mon Sep 17 00:00:00 2001 From: John Byrd Date: Sat, 20 Jan 2024 07:00:08 -0800 Subject: 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. --- src/osd/modules/debugger/debuggdbstub.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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 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 }, -- cgit v1.2.3