mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:47:34 +00:00
LibX86: Run the instruction decoder in 32-bit mode by default
Let's assume a 32-bit execution environment unless otherwise specified.
This commit is contained in:
parent
8f503da93f
commit
e5cde0082a
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ int main(int argc, char** argv)
|
|||
auto insn = disassembler.next();
|
||||
if (!insn.has_value())
|
||||
break;
|
||||
out() << String::format("%08x", offset) << " " << insn.value().to_string(offset, true);
|
||||
out() << String::format("%08x", offset) << " " << insn.value().to_string(offset);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue