diff options
| author | 2009-05-06 15:19:41 +0000 | |
|---|---|---|
| committer | 2009-05-06 15:19:41 +0000 | |
| commit | 29f46d4576a964af04a04b29caeb9f635e80befc (patch) | |
| tree | f44aa904d398669a38586156e92a42d6df2b5306 | |
| parent | d3ebaa07245f5c4ce2458afe3fbc29108f9b75d9 (diff) | |
- Fixed display of the i8085's SP register when in the debugger. [MooglyGuy]
| -rw-r--r-- | src/emu/cpu/i8085/i8085.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/i8085/i8085.c b/src/emu/cpu/i8085/i8085.c index 25f10dc64ac..8c07a9d0d68 100644 --- a/src/emu/cpu/i8085/i8085.c +++ b/src/emu/cpu/i8085/i8085.c @@ -182,8 +182,8 @@ static const cpu_state_entry state_array[] = I8085_STATE_ENTRY(GENPC, "%04X", PC.w.l, 0xffff, CPUSTATE_NOSHOW) // I8085_STATE_ENTRY(GENPCBASE, "%04X", prvpc.w.l, 0xffff, CPUSTATE_NOSHOW) - I8085_STATE_ENTRY(SP, "%04X", PC.w.l, 0xffff, 0) - I8085_STATE_ENTRY(GENSP, "%04X", PC.w.l, 0xffff, CPUSTATE_NOSHOW) + I8085_STATE_ENTRY(SP, "%04X", SP.w.l, 0xffff, 0) + I8085_STATE_ENTRY(GENSP, "%04X", SP.w.l, 0xffff, CPUSTATE_NOSHOW) I8085_STATE_ENTRY(A, "%02X", AF.b.l, 0xff, CPUSTATE_NOSHOW) I8085_STATE_ENTRY(B, "%02X", BC.b.h, 0xff, CPUSTATE_NOSHOW) |
