Merge pull request #20 from sundhaug92/patch-1

Fix: Typo in GDB implementation
This commit is contained in:
Zach Bacon 2016-09-03 17:23:48 -04:00 committed by GitHub
commit f295f726b0
1 changed files with 1 additions and 1 deletions

View File

@ -3613,7 +3613,7 @@ void remoteSendStatus()
s += 12;
CPUUpdateCPSR();
v = reg[16].I;
sprintf(s, "19:%02x%02x%02x%02x;", (v & 255),
sprintf(s, "10:%02x%02x%02x%02x;", (v & 255),
(v >> 8) & 255,
(v >> 16) & 255,
(v >> 24) & 255);