mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:07:35 +00:00
UserspaceEmulator: Implement MOV_RM16_seg
This commit is contained in:
parent
661a940ddd
commit
4828f0b636
1 changed files with 4 additions and 1 deletions
|
@ -2083,7 +2083,10 @@ void SoftCPU::MOV_RM16_reg16(const X86::Instruction& insn)
|
|||
insn.modrm().write16(*this, insn, const_gpr16(insn.reg16()));
|
||||
}
|
||||
|
||||
void SoftCPU::MOV_RM16_seg(const X86::Instruction&) { TODO_INSN(); }
|
||||
void SoftCPU::MOV_RM16_seg(X86::Instruction const& insn)
|
||||
{
|
||||
insn.modrm().write16(*this, insn, shadow_wrap_as_initialized(m_segment[to_underlying(insn.segment_register())]));
|
||||
}
|
||||
|
||||
void SoftCPU::MOV_RM32_imm32(const X86::Instruction& insn)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue