diff options
author | 2013-02-06 20:32:33 +0000 | |
---|---|---|
committer | 2013-02-06 20:32:33 +0000 | |
commit | 871d4c7ac6dd7066e1f4cbc6303d92ce415c3a19 (patch) | |
tree | d55bd14fb496830ce3346bff3c0bb8d98832b0d7 /src/mess/drivers/nc.c | |
parent | 2f1f05e3e6bdb54559c96621a9fc2b322418ba80 (diff) |
Getting rid of DEVICE_IMAGE_START (nw)
Diffstat (limited to 'src/mess/drivers/nc.c')
-rw-r--r-- | src/mess/drivers/nc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mess/drivers/nc.c b/src/mess/drivers/nc.c index 974cd40bc3f..e222e06132e 100644 --- a/src/mess/drivers/nc.c +++ b/src/mess/drivers/nc.c @@ -1609,7 +1609,6 @@ static MACHINE_CONFIG_START( nc100, nc_state ) MCFG_CARTSLOT_ADD("cart") MCFG_CARTSLOT_EXTENSION_LIST("crd,card") MCFG_CARTSLOT_NOT_MANDATORY - MCFG_CARTSLOT_START(nc_state,nc_pcmcia_card) MCFG_CARTSLOT_LOAD(nc_state,nc_pcmcia_card) MCFG_CARTSLOT_UNLOAD(nc_state,nc_pcmcia_card) @@ -1703,6 +1702,6 @@ ROM_START(nc200) ROM_END /* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME FLAGS */ -COMP( 1992, nc100, 0, 0, nc100, nc100, driver_device, 0, "Amstrad plc", "NC100", 0 ) -COMP( 1992, nc150, nc100, 0, nc100, nc100, driver_device, 0, "Amstrad plc", "NC150", 0 ) -COMP( 1993, nc200, 0, 0, nc200, nc200, driver_device, 0, "Amstrad plc", "NC200", GAME_NOT_WORKING ) // boot hangs while checking the MC146818 UIP (update in progress) bit +COMP( 1992, nc100, 0, 0, nc100, nc100, nc_state, nc, "Amstrad plc", "NC100", 0 ) +COMP( 1992, nc150, nc100, 0, nc100, nc100, nc_state, nc, "Amstrad plc", "NC150", 0 ) +COMP( 1993, nc200, 0, 0, nc200, nc200, nc_state, nc, "Amstrad plc", "NC200", GAME_NOT_WORKING ) // boot hangs while checking the MC146818 UIP (update in progress) bit |