updated bords/mappers/stuff to 0.98.15, lots of them got broken, asmcore support...
[fceu.git] / mappers / 18.c
index 13b3ab9..b682b26 100644 (file)
@@ -1,7 +1,7 @@
 /* FCE Ultra - NES/Famicom Emulator
  *
  * Copyright notice for this file:
 /* FCE Ultra - NES/Famicom Emulator
  *
  * Copyright notice for this file:
- *  Copyright (C) 2002 Ben Parnell
+ *  Copyright (C) 2002 Xodnizel
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -39,38 +39,37 @@ void FP_FASTAPASS(1) JalecoIRQHook(int a)
 
 DECLFW(Mapper18_write)
 {
 
 DECLFW(Mapper18_write)
 {
-       A&=0xF003;
-       if(A>=0x8000 && A<=0x9001)
-       {
+        A&=0xF003;
+        if(A>=0x8000 && A<=0x9001)
+        {
          int x=((A>>1)&1)|((A-0x8000)>>11);
 
          K4buf2[x]&=(0xF0)>>((A&1)<<2);
          K4buf2[x]|=(V&0xF)<<((A&1)<<2);
          ROM_BANK8(0x8000+(x<<13),K4buf2[x]);
          int x=((A>>1)&1)|((A-0x8000)>>11);
 
          K4buf2[x]&=(0xF0)>>((A&1)<<2);
          K4buf2[x]|=(V&0xF)<<((A&1)<<2);
          ROM_BANK8(0x8000+(x<<13),K4buf2[x]);
-         X6502_Rebase();
-       }
-       else if(A>=0xa000 && A<=0xd003)
-       {
-        int x=((A>>1)&1)|((A-0xA000)>>11);
+        }
+        else if(A>=0xa000 && A<=0xd003)
+        {
+         int x=((A>>1)&1)|((A-0xA000)>>11);
 
          K4buf[x]&=(0xF0)>>((A&1)<<2);
          K4buf[x]|=(V&0xF)<<((A&1)<<2);
          VROM_BANK1(x<<10,K4buf[x]);
 
          K4buf[x]&=(0xF0)>>((A&1)<<2);
          K4buf[x]|=(V&0xF)<<((A&1)<<2);
          VROM_BANK1(x<<10,K4buf[x]);
-       }
+        }
         else switch(A)
         {
         else switch(A)
         {
-        case 0xe000:IRQLatch&=0xFFF0;IRQLatch|=(V&0x0f);break;
-        case 0xe001:IRQLatch&=0xFF0F;IRQLatch|=(V&0x0f)<<4;break;
-        case 0xe002:IRQLatch&=0xF0FF;IRQLatch|=(V&0x0f)<<8;break;
-        case 0xe003:IRQLatch&=0x0FFF;IRQLatch|=(V&0x0f)<<12;break;
-        case 0xf000:IRQCount=IRQLatch;
-                    break;
-        case 0xf001:IRQa=V&1;
-                    X6502_IRQEnd(FCEU_IQEXT);
-                    break;
-        case 0xf002:MIRROR_SET2(V&1);
-                    if(V&2) onemir(0);
-                    break;
+           case 0xe000:IRQLatch&=0xFFF0;IRQLatch|=(V&0x0f);break;
+         case 0xe001:IRQLatch&=0xFF0F;IRQLatch|=(V&0x0f)<<4;break;
+          case 0xe002:IRQLatch&=0xF0FF;IRQLatch|=(V&0x0f)<<8;break;
+         case 0xe003:IRQLatch&=0x0FFF;IRQLatch|=(V&0x0f)<<12;break;
+         case 0xf000:IRQCount=IRQLatch;
+                     break;
+         case 0xf001:IRQa=V&1;
+                     X6502_IRQEnd(FCEU_IQEXT);
+                     break;
+         case 0xf002:MIRROR_SET2(V&1);
+                     if(V&2) onemir(0);
+                      break;
         }
 }
 
         }
 }