mirror of
https://gitlab.os-k.eu/os-k-team/kvisc.git
synced 2023-08-25 14:05:46 +02:00
ncxz
This commit is contained in:
parent
8ba9f2dd69
commit
1fd3fdbf8e
@ -43,16 +43,16 @@ void dump_instr(ctx_t *ctx,
|
|||||||
|
|
||||||
if (cond & (1 << 4))
|
if (cond & (1 << 4))
|
||||||
{
|
{
|
||||||
cond &= ~(1 << 4);
|
|
||||||
trace("n");
|
trace("n");
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(cond <= sizeof(cond_suffixes)/sizeof(char *));
|
assert((cond & ~(1 << 4)) <= sizeof(cond_suffixes)/sizeof(char *));
|
||||||
|
|
||||||
trace("%s", cond_suffixes[cond]);
|
trace("%s", cond_suffixes[cond & ~(1 << 4)]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!rep) trace("\t\t");
|
if (!rep && cond != ((1 << 4) | CD_CXZ))
|
||||||
|
trace("\t\t");
|
||||||
|
|
||||||
else
|
else
|
||||||
trace("\t");
|
trace("\t");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user