mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:47:35 +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
|
@ -319,7 +319,7 @@ public:
|
|||
|
||||
u8 cc() const { return m_has_sub_op ? m_sub_op & 0xf : m_op & 0xf; }
|
||||
|
||||
String to_string(u32 origin, bool x32) const;
|
||||
String to_string(u32 origin, bool x32 = true) const;
|
||||
|
||||
private:
|
||||
Instruction(InstructionStream&, bool o32, bool a32);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue