Diff for /np2/trap/steptrap.c between versions 1.4 and 1.5

version 1.4, 2005/04/05 20:37:08 version 1.5, 2005/04/08 19:39:09
Line 5 Line 5
   
 #if defined(ENABLE_TRAP)  #if defined(ENABLE_TRAP)
 #include        "dosio.h"  #include        "dosio.h"
   #include        "pccore.h"
 #include        "cpucore.h"  #include        "cpucore.h"
   #include        "sound.h"
   #include        "fmboard.h"
 #include        "steptrap.h"  #include        "steptrap.h"
   
   
Line 29  void CPUCALL steptrap(UINT cs, UINT32 ei Line 32  void CPUCALL steptrap(UINT cs, UINT32 ei
 // ---- ここにトラップ条件コードを書きます  // ---- ここにトラップ条件コードを書きます
 //      return;  //      return;
   
 #if 1  // if (cs4231.intflag) TRACEOUT(("%.4x:%.4x", cs, eip));
           if (cs == 0x1311) TRACEOUT(("%.4x:%.4x", cs, eip));
           if (cs == 0x0d77) TRACEOUT(("%.4x:%.4x", cs, eip));
           if (cs == 0x0f5d) TRACEOUT(("%.4x:%.4x", cs, eip));
           if (cs == 0x0e91) TRACEOUT(("%.4x:%.4x", cs, eip));
   
   #if 0
 {  {
         static UINT tmp = 0;          static UINT tmp = 0;
         if (tmp != *(UINT16 *)(mem + 0xa0000 + 18 * 2)) {          if (tmp != *(UINT16 *)(mem + 0xa0000 + 18 * 2)) {

Removed from v.1.4  
changed lines
  Added in v.1.5


RetroPC.NET-CVS <cvs@retropc.net>