added opcode length as parameter for ret,call and jmp instructions
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1487
This commit is contained in:
parent
d7d47dfaee
commit
7d859fe795
3 changed files with 18 additions and 16 deletions
|
@ -61,9 +61,9 @@ bool CPU_LMSW(Bitu word);
|
|||
void CPU_VERR(Bitu selector);
|
||||
void CPU_VERW(Bitu selector);
|
||||
|
||||
void CPU_JMP(bool use32,Bitu selector,Bitu offset);
|
||||
void CPU_CALL(bool use32,Bitu selector,Bitu offset);
|
||||
void CPU_RET(bool use32,Bitu bytes);
|
||||
void CPU_JMP(bool use32,Bitu selector,Bitu offset,Bitu opLen=0);
|
||||
void CPU_CALL(bool use32,Bitu selector,Bitu offset,Bitu opLen=0);
|
||||
void CPU_RET(bool use32,Bitu bytes,Bitu opLen=0);
|
||||
|
||||
#define CPU_INT_SOFTWARE 0x1
|
||||
#define CPU_INT_EXCEPTION 0x2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue