mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 16:37:35 +00:00
UserspaceEmulator: Implement SETcc_RM8
This commit is contained in:
parent
b524bc123d
commit
aa13183615
1 changed files with 6 additions and 1 deletions
|
@ -1229,7 +1229,12 @@ void SoftCPU::SBB_reg8_RM8(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SCASB(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SCASB(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SCASD(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SCASD(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SCASW(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SCASW(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SETcc_RM8(const X86::Instruction&) { TODO(); }
|
|
||||||
|
void SoftCPU::SETcc_RM8(const X86::Instruction& insn)
|
||||||
|
{
|
||||||
|
insn.modrm().write8(*this, insn, evaluate_condition(insn.cc()));
|
||||||
|
}
|
||||||
|
|
||||||
void SoftCPU::SGDT(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SGDT(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SHLD_RM16_reg16_CL(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SHLD_RM16_reg16_CL(const X86::Instruction&) { TODO(); }
|
||||||
void SoftCPU::SHLD_RM16_reg16_imm8(const X86::Instruction&) { TODO(); }
|
void SoftCPU::SHLD_RM16_reg16_imm8(const X86::Instruction&) { TODO(); }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue