Fix: Typo in GDB implementation

This commit is contained in:
Martin Sundhaug 2016-09-03 22:39:55 +02:00 committed by GitHub
parent 1eb768578b
commit a80209e9b9
1 changed files with 1 additions and 1 deletions

View File

@ -3613,7 +3613,7 @@ void remoteSendStatus()
s += 12; s += 12;
CPUUpdateCPSR(); CPUUpdateCPSR();
v = reg[16].I; 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 >> 8) & 255,
(v >> 16) & 255, (v >> 16) & 255,
(v >> 24) & 255); (v >> 24) & 255);