1
0
Fork 0

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:
Ulf Wohlers 2002-11-14 17:31:55 +00:00
parent 97793a5925
commit 66512e643e

View file

@ -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