1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:47:34 +00:00

LibX86: Add INT1 instruction (needed for disassembly)

This commit is contained in:
Andreas Kling 2021-07-20 15:34:03 +02:00
parent d0fb511d75
commit e7136399a1
4 changed files with 5 additions and 0 deletions

View file

@ -276,6 +276,7 @@ public:
virtual void INSB(const Instruction&) = 0;
virtual void INSD(const Instruction&) = 0;
virtual void INSW(const Instruction&) = 0;
virtual void INT1(const Instruction&) = 0;
virtual void INT3(const Instruction&) = 0;
virtual void INTO(const Instruction&) = 0;
virtual void INT_imm8(const Instruction&) = 0;