ft: partially implement Group 5 instructions

This commit is contained in:
2025-05-14 13:41:08 +09:00
parent 4fa789e6bb
commit 1f88db75f5
2 changed files with 17 additions and 1 deletions

View File

@@ -77,6 +77,7 @@ pub enum Mnemonic {
// PUSH
PUSH_R(Register),
PUSH_S(SegmentRegister),
PUSH_Mod(ModRmTarget),
// POP
POP_S(SegmentRegister), // POP to Segment Register
POP_R(Register), // POP to Register
@@ -203,10 +204,12 @@ pub enum Mnemonic {
// CALL
CALL_p(Pointer),
CALL_v(Word),
CALL_Mod(ModRmTarget),
// JUMP
JMP_p(Pointer),
JMP_b(Byte),
JMP_v(Word),
JMP_Mod(ModRmTarget),
// WAIT
WAIT,
// Push/Pop Flags