ft: implement CALL and JMP instructions
This commit is contained in:
@@ -199,7 +199,12 @@ pub enum Mnemonic {
|
||||
CBW,
|
||||
CWD,
|
||||
// CALL
|
||||
CALL(Pointer),
|
||||
CALL_p(Pointer),
|
||||
CALL_v(Word),
|
||||
// JUMP
|
||||
JMP_p(Pointer),
|
||||
JMP_b(Byte),
|
||||
JMP_v(Word),
|
||||
// WAIT
|
||||
WAIT,
|
||||
// Push/Pop Flags
|
||||
@@ -234,6 +239,8 @@ pub enum Mnemonic {
|
||||
// DIV
|
||||
DIV(ModRmTarget),
|
||||
IDIV(ModRmTarget),
|
||||
// HALT
|
||||
HLT,
|
||||
// INT
|
||||
INT(Byte),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user