1
0
Fork 0

Added get operand size for debugger

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@677
This commit is contained in:
Ulf Wohlers 2003-02-21 20:36:02 +00:00
parent d0cf2829c3
commit d3d19f1039
2 changed files with 6 additions and 0 deletions

View file

@ -1111,6 +1111,11 @@ Bitu DasmI386(char* buffer, PhysPt pc, Bitu cur_ip, bool bit32)
return getbyte_mac-pc;
}
int DasmLastOperandSize()
{
return opsize;
};
#endif

View file

@ -53,3 +53,4 @@ extern DBGBlock dbg;
/* Local Debug Stuff */
Bitu DasmI386(char* buffer, PhysPt pc, Bitu cur_ip, bool bit32);
int DasmLastOperandSize(void);