mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
UserspaceEmulator: Implement CALL_RM32
This commit is contained in:
parent
a6719ede0b
commit
1579cbdc9d
1 changed files with 7 additions and 1 deletions
|
@ -583,7 +583,13 @@ void SoftCPU::BT_RM32_reg32(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::CALL_FAR_mem16(const X86::Instruction&) { TODO(); }
|
void SoftCPU::CALL_FAR_mem16(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::CALL_FAR_mem32(const X86::Instruction&) { TODO(); }
|
void SoftCPU::CALL_FAR_mem32(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::CALL_RM16(const X86::Instruction&) { TODO(); }
|
void SoftCPU::CALL_RM16(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::CALL_RM32(const X86::Instruction&) { TODO(); }
|
|
||||||
|
void SoftCPU::CALL_RM32(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
push32(eip());
|
||||||
|
set_eip(insn.modrm().read32(*this, insn));
|
||||||
|
}
|
||||||
|
|
||||||
void SoftCPU::CALL_imm16(const X86::Instruction&) { TODO(); }
|
void SoftCPU::CALL_imm16(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::CALL_imm16_imm16(const X86::Instruction&) { TODO(); }
|
void SoftCPU::CALL_imm16_imm16(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::CALL_imm16_imm32(const X86::Instruction&) { TODO(); }
|
void SoftCPU::CALL_imm16_imm32(const X86::Instruction&) { TODO(); }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue