mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:17:44 +00:00
UserspaceEmulator: Implement JMP_RM32
This commit is contained in:
parent
a424208399
commit
8940916232
1 changed files with 5 additions and 1 deletions
|
@ -914,7 +914,11 @@ void SoftCPU::JCXZ_imm8(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::JMP_FAR_mem16(const X86::Instruction&) { TODO(); }
|
void SoftCPU::JMP_FAR_mem16(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::JMP_FAR_mem32(const X86::Instruction&) { TODO(); }
|
void SoftCPU::JMP_FAR_mem32(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::JMP_RM16(const X86::Instruction&) { TODO(); }
|
void SoftCPU::JMP_RM16(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::JMP_RM32(const X86::Instruction&) { TODO(); }
|
|
||||||
|
void SoftCPU::JMP_RM32(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
set_eip(insn.modrm().read32(*this, insn));
|
||||||
|
}
|
||||||
|
|
||||||
void SoftCPU::JMP_imm16(const X86::Instruction& insn)
|
void SoftCPU::JMP_imm16(const X86::Instruction& insn)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue