Added automatic cpu log call, if an "INT CD" occurs.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@500
This commit is contained in:
parent
97793a5925
commit
66512e643e
1 changed files with 4 additions and 0 deletions
|
@ -80,6 +80,10 @@ void Interrupt(Bit8u num) {
|
|||
case 0x74:
|
||||
break;
|
||||
case 0xcd:
|
||||
#if C_HEAVY_DEBUG
|
||||
LOG_DEBUG("Call to interrupt 0xCD this is BAD");
|
||||
DEBUG_HeavyWriteLogInstruction();
|
||||
#endif
|
||||
E_Exit("Call to interrupt 0xCD this is BAD");
|
||||
case 0x03:
|
||||
#if C_DEBUG
|
||||
|
|
Loading…
Add table
Reference in a new issue