summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/phc25.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/phc25.cpp')
-rw-r--r--src/mame/drivers/phc25.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/phc25.cpp b/src/mame/drivers/phc25.cpp
index ad8010d173f..dfc920f8540 100644
--- a/src/mame/drivers/phc25.cpp
+++ b/src/mame/drivers/phc25.cpp
@@ -119,14 +119,14 @@ WRITE_LINE_MEMBER( phc25_state::write_centronics_busy )
/* Memory Maps */
-static ADDRESS_MAP_START( phc25_mem, AS_PROGRAM, 8, phc25_state )
+ADDRESS_MAP_START(phc25_state::phc25_mem)
ADDRESS_MAP_UNMAP_HIGH
AM_RANGE(0x0000, 0x5fff) AM_ROM AM_REGION(Z80_TAG, 0)
AM_RANGE(0x6000, 0x77ff) AM_RAM AM_SHARE("video_ram")
AM_RANGE(0xc000, 0xffff) AM_RAM
ADDRESS_MAP_END
-static ADDRESS_MAP_START( phc25_io, AS_IO, 8, phc25_state )
+ADDRESS_MAP_START(phc25_state::phc25_io)
ADDRESS_MAP_UNMAP_HIGH
ADDRESS_MAP_GLOBAL_MASK(0xff)
AM_RANGE(0x00, 0x00) AM_DEVWRITE("cent_data_out", output_latch_device, write)