We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fba91a4 commit b6472c2Copy full SHA for b6472c2
Userland/DevTools/UserspaceEmulator/SoftCPU.h
@@ -381,6 +381,8 @@ class SoftCPU final
381
u16 ds() const { return m_segment[(int)X86::SegmentRegister::DS]; }
382
u16 es() const { return m_segment[(int)X86::SegmentRegister::ES]; }
383
u16 ss() const { return m_segment[(int)X86::SegmentRegister::SS]; }
384
+ u16 fs() const { return m_segment[(int)X86::SegmentRegister::FS]; }
385
+ u16 gs() const { return m_segment[(int)X86::SegmentRegister::GS]; }
386
387
ValueWithShadow<u8> read_memory8(X86::LogicalAddress);
388
ValueWithShadow<u16> read_memory16(X86::LogicalAddress);
0 commit comments