mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 02:41:08 +00:00
Oops, fix remaining ?0/?1 -> ?t0/?t1 in debugger
This commit is contained in:
parent
7d076a5b5a
commit
c20d67b61f
@ -4313,7 +4313,7 @@ dodo:
|
||||
|
||||
if (cmdvhex && *cmdvhex) {
|
||||
snprintf (debugstr, sizeof (debugstr),
|
||||
"?t0;f tmp;ssr %s;%s;?1;%s;?1;"
|
||||
"?t0;f tmp;ssr %s;%s;?t1;%s;?t1;"
|
||||
"ss tmp;f-tmp;pd $r", reg, cmdvhex,
|
||||
ref? "drr": "dr=");
|
||||
debugstr[sizeof (debugstr) - 1] = 0;
|
||||
@ -4322,7 +4322,7 @@ dodo:
|
||||
const char sign = (delta < 0)? '+': '-';
|
||||
const int absdelta = R_ABS (delta);
|
||||
snprintf (debugstr, sizeof (debugstr),
|
||||
"diq;?0;f tmp;ssr %s;%s %d@$$%c%d;"
|
||||
"diq;?t0;f tmp;ssr %s;%s %d@$$%c%d;"
|
||||
"?t1;%s;"
|
||||
"?t1;ss tmp;f-tmp;afal;pd $r",
|
||||
reg, pxa? "pxa": pxw, size, sign, absdelta,
|
||||
|
Loading…
Reference in New Issue
Block a user