1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

UserspaceEmulator: Implement MOV_seg_RM32 and MOV_seg_RM16

This allows hosted programs to write to segment registers. :^)
This commit is contained in:
Andreas Kling 2022-12-06 17:31:52 +01:00
parent bd1f39ebaa
commit 661a940ddd
2 changed files with 20 additions and 2 deletions

View file

@ -1348,6 +1348,8 @@ private:
void update_code_cache();
void write_segment_register(X86::SegmentRegister, ValueWithShadow<u16>);
Emulator& m_emulator;
SoftFPU m_fpu;
SoftVPU m_vpu;