Genesis-Plus-GX/source/membnk.c

215 lines
5.6 KiB
C
Raw Normal View History

2008-08-07 14:26:07 +02:00
/***************************************************************************************
* Genesis Plus
2008-08-07 14:26:07 +02:00
* M68k Bank access from Z80
*
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Charles Mac Donald (original code)
* Eke-Eke (2007,2008,2009), additional code & fixes for the GCN/Wii port
2008-08-07 14:26:07 +02:00
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
****************************************************************************************/
#include "shared.h"
/*
Handlers for access to unused addresses and those which make the
machine lock up.
*/
2008-12-04 20:32:22 +01:00
uint32 zbank_unused_r(uint32 address)
2008-08-07 14:26:07 +02:00
{
#ifdef LOGERROR
error("Z80 bank unused read %06X\n", address);
#endif
2008-12-10 19:16:30 +01:00
return (address & 1) ? 0x00 : 0xFF;
2008-08-07 14:26:07 +02:00
}
2008-12-04 20:32:22 +01:00
void zbank_unused_w(uint32 address, uint32 data)
2008-08-07 14:26:07 +02:00
{
#ifdef LOGERROR
2008-12-04 20:32:22 +01:00
error("Z80 bank unused write %06X = %02X\n", address, data);
2008-08-07 14:26:07 +02:00
#endif
}
2008-12-04 20:32:22 +01:00
uint32 zbank_lockup_r(uint32 address)
2008-08-07 14:26:07 +02:00
{
#ifdef LOGERROR
error("Z80 bank lockup read %06X\n", address);
#endif
gen_running = config.force_dtack;
2008-08-07 14:26:07 +02:00
return 0xFF;
}
2008-12-04 20:32:22 +01:00
void zbank_lockup_w(uint32 address, uint32 data)
2008-08-07 14:26:07 +02:00
{
2008-12-04 20:32:22 +01:00
#ifdef LOGERROR
error("Z80 bank lockup write %06X = %02X\n", address, data);
#endif
gen_running = config.force_dtack;
2008-12-04 20:32:22 +01:00
}
2008-08-07 14:26:07 +02:00
2008-12-04 20:32:22 +01:00
/* I/O & Control registers */
uint32 zbank_read_ctrl_io(uint32 address)
{
switch ((address >> 8) & 0xff)
2008-12-05 17:26:57 +01:00
{
2008-12-10 19:16:30 +01:00
case 0x00: /* I/O chip */
2008-12-04 20:32:22 +01:00
if (address & 0xe0) return zbank_unused_r(address);
else return (io_read((address >> 1) & 0x0f));
2008-12-10 19:16:30 +01:00
case 0x11: /* BUSACK */
2008-12-04 20:32:22 +01:00
if (address & 1) return zbank_unused_r(address);
else return (0xfe | zbusack);
2008-12-10 19:16:30 +01:00
case 0x30: /* TIME */
2008-12-04 20:32:22 +01:00
if (cart_hw.time_r) return cart_hw.time_r(address);
else return zbank_unused_r(address);
2008-12-10 19:16:30 +01:00
case 0x10: /* MEMORY MODE */
case 0x12: /* RESET */
case 0x20: /* MEGA-CD */
case 0x40: /* TMSS */
case 0x41: /* BOOTROM */
case 0x44: /* RADICA */
case 0x50: /* SVP REGISTERS */
2008-12-04 20:32:22 +01:00
return zbank_unused_r(address);
2008-12-10 19:16:30 +01:00
default: /* Invalid address */
2008-12-04 20:32:22 +01:00
return zbank_lockup_r(address);
}
2008-12-05 17:26:57 +01:00
}
2008-08-07 14:26:07 +02:00
2008-12-04 20:32:22 +01:00
void zbank_write_ctrl_io(uint32 address, uint32 data)
2008-12-10 19:16:30 +01:00
{
2008-12-05 17:26:57 +01:00
switch ((address >> 8) & 0xff)
{
2008-12-10 19:16:30 +01:00
case 0x00: /* I/O chip */
2008-12-05 17:26:57 +01:00
if ((address & 0xe1) == 0x01) io_write((address >> 1) & 0x0f, data); /* get /LWR only */
2008-12-04 20:32:22 +01:00
else zbank_unused_w(address, data);
2008-12-05 17:26:57 +01:00
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
case 0x11: /* BUSREQ */
2008-12-04 20:32:22 +01:00
if (address & 1) zbank_unused_w(address, data);
2008-12-05 17:26:57 +01:00
else gen_busreq_w(data & 1);
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
case 0x12: /* RESET */
2008-12-04 20:32:22 +01:00
if (address & 1) zbank_unused_w(address, data);
2008-12-05 17:26:57 +01:00
else gen_reset_w(data & 1);
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
case 0x30: /* TIME */
2008-12-04 20:32:22 +01:00
if (cart_hw.time_w) cart_hw.time_w(address, data);
else zbank_unused_w(address, data);
2008-12-05 17:26:57 +01:00
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
case 0x41: /* BOOTROM */
2008-12-05 17:26:57 +01:00
if (address & 1)
{
2008-12-04 20:32:22 +01:00
m68k_memory_map[0].base = (data & 1) ? default_rom : bios_rom;
2008-08-07 14:26:07 +02:00
2008-12-05 17:26:57 +01:00
/* autodetect BIOS ROM file */
if (!(config.bios_enabled & 2))
{
config.bios_enabled |= 2;
memcpy(bios_rom, cart_rom, 0x800);
memset(cart_rom, 0, genromsize);
}
}
2008-12-04 20:32:22 +01:00
else zbank_unused_w (address, data);
2008-12-05 17:26:57 +01:00
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
case 0x10: /* MEMORY MODE */
case 0x20: /* MEGA-CD */
case 0x40: /* TMSS */
case 0x44: /* RADICA */
2008-12-05 17:26:57 +01:00
case 0x50: /* SVP REGISTERS */
2008-12-04 20:32:22 +01:00
zbank_unused_w(address, data);
2008-12-05 17:26:57 +01:00
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
default: /* Invalid address */
2008-12-04 20:32:22 +01:00
zbank_lockup_w(address, data);
2008-12-05 17:26:57 +01:00
return;
}
}
2008-08-07 14:26:07 +02:00
2008-12-05 17:26:57 +01:00
/* VDP */
2008-12-04 20:32:22 +01:00
uint32 zbank_read_vdp(uint32 address)
2008-12-05 17:26:57 +01:00
{
switch (address & 0xfd)
{
2008-12-10 19:16:30 +01:00
case 0x00: /* DATA */
2008-12-05 17:26:57 +01:00
return (vdp_data_r() >> 8);
2008-12-10 19:16:30 +01:00
case 0x01: /* DATA */
2008-12-05 17:26:57 +01:00
return (vdp_data_r() & 0xff);
2008-12-10 19:16:30 +01:00
case 0x04: /* CTRL */
2008-12-05 17:26:57 +01:00
return (0xfc | ((vdp_ctrl_r() >> 8) & 3));
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
case 0x05: /* CTRL */
2008-12-05 17:26:57 +01:00
return (vdp_ctrl_r() & 0xff);
2008-12-10 19:16:30 +01:00
case 0x08: /* HVC */
2008-12-05 17:26:57 +01:00
case 0x0c:
return (vdp_hvc_r() >> 8);
2008-12-10 19:16:30 +01:00
case 0x09: /* HVC */
2008-12-05 17:26:57 +01:00
case 0x0d:
return (vdp_hvc_r() & 0xff);
2008-12-10 19:16:30 +01:00
case 0x18: /* Unused */
2008-12-05 17:26:57 +01:00
case 0x19:
case 0x1c:
case 0x1d:
2008-12-04 20:32:22 +01:00
return zbank_unused_r(address);
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
default: /* Invalid address */
2008-12-04 20:32:22 +01:00
return zbank_lockup_r(address);
}
2008-12-05 17:26:57 +01:00
}
2008-08-07 14:26:07 +02:00
2008-12-04 20:32:22 +01:00
void zbank_write_vdp(uint32 address, uint32 data)
{
switch (address & 0xfc)
{
2008-12-10 19:16:30 +01:00
case 0x00: /* Data port */
2008-12-04 20:32:22 +01:00
vdp_data_w(data << 8 | data);
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
case 0x04: /* Control port */
2008-12-04 20:32:22 +01:00
vdp_ctrl_w(data << 8 | data);
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
case 0x10: /* PSG */
2008-12-04 20:32:22 +01:00
case 0x14:
if (address & 1) psg_write(0, data);
else zbank_unused_w(address, data);
return;
case 0x18: /* Unused */
zbank_unused_w(address, data);
return;
2008-08-07 14:26:07 +02:00
2008-12-04 20:32:22 +01:00
case 0x1c: /* TEST register */
vdp_test_w(data << 8 | data);
return;
2008-08-07 14:26:07 +02:00
2008-12-10 19:16:30 +01:00
default: /* Invalid address */
2008-12-04 20:32:22 +01:00
zbank_lockup_w(address, data);
return;
2008-08-07 14:26:07 +02:00
}
}