summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/playch10.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/playch10.c')
-rw-r--r--src/mame/machine/playch10.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/mame/machine/playch10.c b/src/mame/machine/playch10.c
index 3eb8f30e38c..888ab57de6b 100644
--- a/src/mame/machine/playch10.c
+++ b/src/mame/machine/playch10.c
@@ -51,8 +51,8 @@ void playch10_state::machine_start()
/* move to individual boards as documentation of actual boards allows */
m_nt_ram = auto_alloc_array(machine(), UINT8, 0x1000);
- machine().device("ppu")->memory().space(AS_PROGRAM)->install_readwrite_handler(0, 0x1fff, read8_delegate(FUNC(playch10_state::pc10_chr_r),this), write8_delegate(FUNC(playch10_state::pc10_chr_w),this));
- machine().device("ppu")->memory().space(AS_PROGRAM)->install_readwrite_handler(0x2000, 0x3eff, read8_delegate(FUNC(playch10_state::pc10_nt_r),this),write8_delegate(FUNC(playch10_state::pc10_nt_w),this));
+ machine().device("ppu")->memory().space(AS_PROGRAM).install_readwrite_handler(0, 0x1fff, read8_delegate(FUNC(playch10_state::pc10_chr_r),this), write8_delegate(FUNC(playch10_state::pc10_chr_w),this));
+ machine().device("ppu")->memory().space(AS_PROGRAM).install_readwrite_handler(0x2000, 0x3eff, read8_delegate(FUNC(playch10_state::pc10_nt_r),this),write8_delegate(FUNC(playch10_state::pc10_nt_w),this));
if (NULL != m_vram)
set_videoram_bank(machine(), 0, 8, 0, 8);
@@ -74,8 +74,8 @@ MACHINE_START_MEMBER(playch10_state,playch10_hboard)
m_vram = auto_alloc_array(machine(), UINT8, 0x2000);
- machine().device("ppu")->memory().space(AS_PROGRAM)->install_readwrite_handler(0, 0x1fff, read8_delegate(FUNC(playch10_state::pc10_chr_r),this), write8_delegate(FUNC(playch10_state::pc10_chr_w),this));
- machine().device("ppu")->memory().space(AS_PROGRAM)->install_readwrite_handler(0x2000, 0x3eff, read8_delegate(FUNC(playch10_state::pc10_nt_r),this), write8_delegate(FUNC(playch10_state::pc10_nt_w),this));
+ machine().device("ppu")->memory().space(AS_PROGRAM).install_readwrite_handler(0, 0x1fff, read8_delegate(FUNC(playch10_state::pc10_chr_r),this), write8_delegate(FUNC(playch10_state::pc10_chr_w),this));
+ machine().device("ppu")->memory().space(AS_PROGRAM).install_readwrite_handler(0x2000, 0x3eff, read8_delegate(FUNC(playch10_state::pc10_nt_r),this), write8_delegate(FUNC(playch10_state::pc10_nt_w),this));
}
/*************************************
@@ -581,7 +581,7 @@ WRITE8_MEMBER(playch10_state::aboard_vrom_switch_w)
DRIVER_INIT_MEMBER(playch10_state,pcaboard)
{
/* switches vrom with writes to the $803e-$8041 area */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0x8fff, write8_delegate(FUNC(playch10_state::aboard_vrom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0x8fff, write8_delegate(FUNC(playch10_state::aboard_vrom_switch_w),this));
/* common init */
DRIVER_INIT_CALL(playch10);
@@ -613,7 +613,7 @@ DRIVER_INIT_MEMBER(playch10_state,pcbboard)
memcpy(&prg[0x08000], &prg[0x28000], 0x8000);
/* Roms are banked at $8000 to $bfff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::bboard_rom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::bboard_rom_switch_w),this));
/* common init */
DRIVER_INIT_CALL(playch10);
@@ -638,7 +638,7 @@ WRITE8_MEMBER(playch10_state::cboard_vrom_switch_w)
DRIVER_INIT_MEMBER(playch10_state,pccboard)
{
/* switches vrom with writes to $6000 */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x6000, 0x6000, write8_delegate(FUNC(playch10_state::cboard_vrom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x6000, 0x6000, write8_delegate(FUNC(playch10_state::cboard_vrom_switch_w),this));
/* we have no vram, make sure switching games doesn't point to an old allocation */
m_vram = NULL;
@@ -661,7 +661,7 @@ DRIVER_INIT_MEMBER(playch10_state,pcdboard)
m_mmc1_rom_mask = 0x07;
/* MMC mapper at writes to $8000-$ffff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::mmc1_rom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::mmc1_rom_switch_w),this));
/* common init */
@@ -677,7 +677,7 @@ DRIVER_INIT_MEMBER(playch10_state,pcdboard)
DRIVER_INIT_MEMBER(playch10_state,pcdboard_2)
{
/* extra ram at $6000-$7fff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_ram(0x6000, 0x7fff);
+ machine().device("cart")->memory().space(AS_PROGRAM).install_ram(0x6000, 0x7fff);
/* common init */
DRIVER_INIT_CALL(pcdboard);
@@ -775,13 +775,13 @@ DRIVER_INIT_MEMBER(playch10_state,pceboard)
memcpy(&prg[0x08000], &prg[0x28000], 0x8000);
/* basically a mapper 9 on a nes */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::eboard_rom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::eboard_rom_switch_w),this));
/* ppu_latch callback */
ppu->set_latch(mapper9_latch);
/* nvram at $6000-$6fff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_ram(0x6000, 0x6fff);
+ machine().device("cart")->memory().space(AS_PROGRAM).install_ram(0x6000, 0x6fff);
/* common init */
DRIVER_INIT_CALL(playch10);
@@ -804,7 +804,7 @@ DRIVER_INIT_MEMBER(playch10_state,pcfboard)
m_mmc1_rom_mask = 0x07;
/* MMC mapper at writes to $8000-$ffff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::mmc1_rom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::mmc1_rom_switch_w),this));
/* common init */
DRIVER_INIT_CALL(playch10);
@@ -815,7 +815,7 @@ DRIVER_INIT_MEMBER(playch10_state,pcfboard)
DRIVER_INIT_MEMBER(playch10_state,pcfboard_2)
{
/* extra ram at $6000-$6fff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_ram(0x6000, 0x6fff);
+ machine().device("cart")->memory().space(AS_PROGRAM).install_ram(0x6000, 0x6fff);
m_vram = NULL;
@@ -991,10 +991,10 @@ DRIVER_INIT_MEMBER(playch10_state,pcgboard)
memcpy(&prg[0x0c000], &prg[0x4c000], 0x4000);
/* MMC3 mapper at writes to $8000-$ffff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::gboard_rom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::gboard_rom_switch_w),this));
/* extra ram at $6000-$7fff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_ram(0x6000, 0x7fff);
+ machine().device("cart")->memory().space(AS_PROGRAM).install_ram(0x6000, 0x7fff);
m_gboard_banks[0] = 0x1e;
m_gboard_banks[1] = 0x1f;
@@ -1045,7 +1045,7 @@ DRIVER_INIT_MEMBER(playch10_state,pciboard)
memcpy(&prg[0x08000], &prg[0x10000], 0x8000);
/* Roms are banked at $8000 to $bfff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::iboard_rom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::iboard_rom_switch_w),this));
/* common init */
DRIVER_INIT_CALL(playch10);
@@ -1112,10 +1112,10 @@ DRIVER_INIT_MEMBER(playch10_state,pchboard)
memcpy(&prg[0x0c000], &prg[0x4c000], 0x4000);
/* Roms are banked at $8000 to $bfff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::hboard_rom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::hboard_rom_switch_w),this));
/* extra ram at $6000-$7fff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_ram(0x6000, 0x7fff);
+ machine().device("cart")->memory().space(AS_PROGRAM).install_ram(0x6000, 0x7fff);
m_gboard_banks[0] = 0x1e;
m_gboard_banks[1] = 0x1f;
@@ -1142,10 +1142,10 @@ DRIVER_INIT_MEMBER(playch10_state,pckboard)
m_mmc1_rom_mask = 0x0f;
/* extra ram at $6000-$7fff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_ram(0x6000, 0x7fff);
+ machine().device("cart")->memory().space(AS_PROGRAM).install_ram(0x6000, 0x7fff);
/* Roms are banked at $8000 to $bfff */
- machine().device("cart")->memory().space(AS_PROGRAM)->install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::mmc1_rom_switch_w),this));
+ machine().device("cart")->memory().space(AS_PROGRAM).install_write_handler(0x8000, 0xffff, write8_delegate(FUNC(playch10_state::mmc1_rom_switch_w),this));
/* common init */
DRIVER_INIT_CALL(playch10);