1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +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

@ -2384,6 +2384,7 @@ void SoftCPU::INC_reg32(const X86::Instruction& insn)
void SoftCPU::INSB(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::INSD(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::INSW(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::INT1(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::INT3(const X86::Instruction&) { TODO_INSN(); }
void SoftCPU::INTO(const X86::Instruction&) { TODO_INSN(); }