summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/osd/modules/debugger/debuggdbstub.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/debuggdbstub.cpp b/src/osd/modules/debugger/debuggdbstub.cpp
index 8ccfc7bfbc9..1dce80aaf52 100644
--- a/src/osd/modules/debugger/debuggdbstub.cpp
+++ b/src/osd/modules/debugger/debuggdbstub.cpp
@@ -281,8 +281,8 @@ static const gdb_register_map gdb_register_map_m6502 =
{ "X", "x", false, TYPE_INT },
{ "Y", "y", false, TYPE_INT },
{ "P", "p", false, TYPE_INT },
- { "PC", "pc", true, TYPE_CODE_POINTER },
{ "SP", "sp", true, TYPE_DATA_POINTER },
+ { "PC", "pc", true, TYPE_CODE_POINTER },
}
};
@@ -315,6 +315,7 @@ static const std::map<std::string, const gdb_register_map &> gdb_register_maps =
{ "m68020pmmu", gdb_register_map_m68020pmmu },
{ "z80", gdb_register_map_z80 },
{ "m6502", gdb_register_map_m6502 },
+ { "n2a03", gdb_register_map_m6502 },
{ "m6809", gdb_register_map_m6809 },
};