Push/Pull disassembly no longer incorrectly concatenates operands in disassembly
This commit is contained in:
parent
93d1c9ce56
commit
da22bf95de
@ -86,10 +86,10 @@ std::string disassemble(uint16_t inst, uint sideset_bits_including_opt, bool sid
|
||||
std::string guts = "";
|
||||
if (arg1 & 4u) {
|
||||
op("pull");
|
||||
if (arg1 & 2u) guts = "ifempty";
|
||||
if (arg1 & 2u) guts = "ifempty ";
|
||||
} else {
|
||||
op("push");
|
||||
if (arg1 & 2u) guts = "iffull";
|
||||
if (arg1 & 2u) guts = "iffull ";
|
||||
}
|
||||
guts += (arg1 & 0x1u) ? "block" : "noblock";
|
||||
op_guts(guts);
|
||||
|
Loading…
Reference in New Issue
Block a user