X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=fceu.git;a=blobdiff_plain;f=boards%2F108.c;fp=boards%2F108.c;h=59d91f2dcb467895ff99b1b811f46e2b858670f0;hp=fc3aebdb9ff825cac901e97daaaaf5e4f1b6c37d;hb=43725da7349c85fa13e828fdbf20cc7ac8d298d6;hpb=386f5371eb984fb9c2860c83e740890a75cd45c1 diff --git a/boards/108.c b/boards/108.c index fc3aebd..59d91f2 100644 --- a/boards/108.c +++ b/boards/108.c @@ -15,7 +15,13 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * FDS Conversion + * + * Meikyuu Jin Dababa + * Bubble Bobble Kaiser + * */ #include "mapinc.h" @@ -37,8 +43,8 @@ static void Sync(void) static DECLFW(M108Write) { - reg=V; - Sync(); + reg=V; + Sync(); } static void M108Power(void) @@ -46,7 +52,8 @@ static void M108Power(void) Sync(); SetReadHandler(0x6000,0x7FFF,CartBR); SetReadHandler(0x8000,0xFFFF,CartBR); - SetWriteHandler(0x8FFF,0x8FFF,M108Write); + SetWriteHandler(0x8000,0x8FFF,M108Write); // regular 108 + SetWriteHandler(0xF000,0xFFFF,M108Write); // simplified Kaiser BB Hack } static void StateRestore(int version)