non-asm compatibility re-fixed
[fceu.git] / x6502.c
diff --git a/x6502.c b/x6502.c
index 7ec04ef..1d9174c 100644 (file)
--- a/x6502.c
+++ b/x6502.c
@@ -397,11 +397,13 @@ static uint8 CycTable[256] =
 
 void FASTAPASS(1) X6502_IRQBegin_c(int w)
 {
 
 void FASTAPASS(1) X6502_IRQBegin_c(int w)
 {
+ dprintf("IRQB %02x",w);
  _IRQlow|=w;
 }
 
 void FASTAPASS(1) X6502_IRQEnd_c(int w)
 {
  _IRQlow|=w;
 }
 
 void FASTAPASS(1) X6502_IRQEnd_c(int w)
 {
+ dprintf("IRQE %02x",w);
  _IRQlow&=~w;
 }
 
  _IRQlow&=~w;
 }