summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2015-05-06 09:50:02 +0100
committer David Haywood <mamehaze@users.noreply.github.com>2015-05-06 09:50:02 +0100
commit7a88d8c1028fdc396d45d293612bdccbb91b92cd (patch)
treeeffd545299231d6c8c7e8bd4ff5edbe77e2971ce
parentc08c09fab0ed072eedd969a25c0b08331c5d7a37 (diff)
these need faster eeprom timing, even mosaicf2 wasn't saving, royalpk2 now shows a boot screen (nw)
-rw-r--r--src/mame/drivers/f-32.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mame/drivers/f-32.c b/src/mame/drivers/f-32.c
index ee789a0b995..235949e4a06 100644
--- a/src/mame/drivers/f-32.c
+++ b/src/mame/drivers/f-32.c
@@ -147,6 +147,8 @@ static MACHINE_CONFIG_START( mosaicf2, mosaicf2_state )
MCFG_CPU_VBLANK_INT_DRIVER("screen", mosaicf2_state, irq0_line_hold)
MCFG_EEPROM_SERIAL_93C46_ADD("eeprom")
+ MCFG_EEPROM_ERASE_TIME(attotime::from_usec(1))
+ MCFG_EEPROM_WRITE_TIME(attotime::from_usec(1))
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
@@ -218,9 +220,11 @@ static MACHINE_CONFIG_START( royalpk2, mosaicf2_state )
MCFG_CPU_ADD("maincpu", GMS30C2132, XTAL_50MHz)
MCFG_CPU_PROGRAM_MAP(royalpk2_map)
MCFG_CPU_IO_MAP(royalpk2_io)
- MCFG_CPU_VBLANK_INT_DRIVER("screen", mosaicf2_state, irq0_line_hold)
+ MCFG_CPU_VBLANK_INT_DRIVER("screen", mosaicf2_state, irq1_line_hold)
MCFG_EEPROM_SERIAL_93C46_ADD("eeprom")
+ MCFG_EEPROM_ERASE_TIME(attotime::from_usec(1))
+ MCFG_EEPROM_WRITE_TIME(attotime::from_usec(1))
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
@@ -343,4 +347,4 @@ ROM_END
GAME( 1999, mosaicf2, 0, mosaicf2, mosaicf2, driver_device, 0, ROT0, "F2 System", "Mosaic (F2 System)", GAME_SUPPORTS_SAVE )
-GAME( 1999, royalpk2, 0, royalpk2, royalpk2, driver_device, 0, ROT0, "F2 System", "Royal Poker 2", GAME_NOT_WORKING )
+GAME( 1999, royalpk2, 0, royalpk2, royalpk2, driver_device, 0, ROT0, "F2 System", "Royal Poker 2 (Network version 3.12)", GAME_NOT_WORKING )