mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
Re: "I don't think Kyle Hodgetts' name needs to be in the manufacturer info as he frequently did business under the name of a company with a few other people (in this case, Vision Electronics)."
This commit is contained in:
parent
b1e952b89c
commit
4696b6345b
@ -382,7 +382,6 @@ GFXDECODE_END
|
||||
|
||||
void m52_state::machine_reset()
|
||||
{
|
||||
|
||||
m_bg1xpos = 0;
|
||||
m_bg1ypos = 0;
|
||||
m_bg2xpos = 0;
|
||||
@ -398,7 +397,6 @@ static MACHINE_CONFIG_START( m52, m52_state )
|
||||
MCFG_CPU_IO_MAP(main_portmap)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", m52_state, irq0_line_hold)
|
||||
|
||||
|
||||
/* video hardware */
|
||||
MCFG_GFXDECODE(m52)
|
||||
MCFG_PALETTE_LENGTH(128*4+16*4+3*4)
|
||||
@ -407,7 +405,6 @@ static MACHINE_CONFIG_START( m52, m52_state )
|
||||
MCFG_SCREEN_RAW_PARAMS(MASTER_CLOCK/3, 384, 136, 376, 282, 22, 274)
|
||||
MCFG_SCREEN_UPDATE_DRIVER(m52_state, screen_update_m52)
|
||||
|
||||
|
||||
/* sound hardware */
|
||||
MCFG_FRAGMENT_ADD(m52_sound_c_audio)
|
||||
MACHINE_CONFIG_END
|
||||
@ -547,4 +544,4 @@ ROM_END
|
||||
|
||||
GAME( 1982, mpatrol, 0, m52, mpatrol, driver_device, 0, ROT0, "Irem", "Moon Patrol", GAME_SUPPORTS_SAVE )
|
||||
GAME( 1982, mpatrolw, mpatrol, m52, mpatrolw, driver_device, 0, ROT0, "Irem (Williams license)", "Moon Patrol (Williams)", GAME_SUPPORTS_SAVE )
|
||||
GAME( 1988, alpha1v, 0, alpha1v, alpha1v, driver_device, 0, ROT0, "Vision Electronics / Kyle Hodgetts", "Alpha One (Vision Electronics / Kyle Hodgetts)", GAME_NOT_WORKING|GAME_NO_SOUND|GAME_SUPPORTS_SAVE )
|
||||
GAME( 1988, alpha1v, 0, alpha1v, alpha1v, driver_device, 0, ROT0, "Vision Electronics", "Alpha One (Vision Electronics)", GAME_NOT_WORKING| GAME_NO_SOUND| GAME_SUPPORTS_SAVE )
|
||||
|
@ -61,7 +61,6 @@
|
||||
|
||||
INTERRUPT_GEN_MEMBER(timeplt_state::timeplt_interrupt)
|
||||
{
|
||||
|
||||
if (m_nmi_enable)
|
||||
device.execute().set_input_line(INPUT_LINE_NMI, ASSERT_LINE);
|
||||
}
|
||||
@ -95,7 +94,6 @@ READ8_MEMBER(timeplt_state::psurge_protection_r)
|
||||
// chkun has access to an extra soundchip via ay2 port a
|
||||
WRITE8_MEMBER(timeplt_state::chkun_sound_w)
|
||||
{
|
||||
|
||||
// d0-d3: P0-P3
|
||||
// d5: /R (unused?)
|
||||
// d6: /W
|
||||
@ -454,13 +452,11 @@ GFXDECODE_END
|
||||
|
||||
void timeplt_state::machine_start()
|
||||
{
|
||||
|
||||
save_item(NAME(m_nmi_enable));
|
||||
}
|
||||
|
||||
void timeplt_state::machine_reset()
|
||||
{
|
||||
|
||||
m_nmi_enable = 0;
|
||||
}
|
||||
|
||||
@ -471,7 +467,6 @@ static MACHINE_CONFIG_START( timeplt, timeplt_state )
|
||||
MCFG_CPU_PROGRAM_MAP(timeplt_main_map)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", timeplt_state, timeplt_interrupt)
|
||||
|
||||
|
||||
/* video hardware */
|
||||
MCFG_VIDEO_ATTRIBUTES(VIDEO_UPDATE_SCANLINE)
|
||||
|
||||
@ -484,7 +479,6 @@ static MACHINE_CONFIG_START( timeplt, timeplt_state )
|
||||
MCFG_GFXDECODE(timeplt)
|
||||
MCFG_PALETTE_LENGTH(32*4+64*4)
|
||||
|
||||
|
||||
/* sound hardware */
|
||||
MCFG_FRAGMENT_ADD(timeplt_sound)
|
||||
MACHINE_CONFIG_END
|
||||
@ -712,7 +706,7 @@ GAME( 1982, timeplt, 0, timeplt, timeplt, driver_device, 0, ROT90, "Kona
|
||||
GAME( 1982, timepltc, timeplt, timeplt, timeplt, driver_device, 0, ROT90, "Konami (Centuri license)", "Time Pilot (Centuri)", GAME_SUPPORTS_SAVE )
|
||||
GAME( 1982, timeplta, timeplt, timeplt, timeplt, driver_device, 0, ROT90, "Konami (Atari license)", "Time Pilot (Atari)", GAME_SUPPORTS_SAVE )
|
||||
GAME( 1982, spaceplt, timeplt, timeplt, timeplt, driver_device, 0, ROT90, "bootleg", "Space Pilot", GAME_SUPPORTS_SAVE )
|
||||
GAME( 1988, psurge, 0, psurge, psurge, driver_device, 0, ROT270, "Vision Electronics / Kyle Hodgetts", "Power Surge", GAME_SUPPORTS_SAVE )
|
||||
GAME( 1988, psurge, 0, psurge, psurge, driver_device, 0, ROT270, "Vision Electronics", "Power Surge", GAME_SUPPORTS_SAVE )
|
||||
// ROM says manufactured by Peni Soft for these two ... no, I'm not going to add THAT -.-"
|
||||
GAME( 1988, chkun, 0, chkun, chkun, driver_device, 0, ROT90, "<unknown>", "Chance Kun (Japan)", GAME_SUPPORTS_SAVE | GAME_IMPERFECT_SOUND )
|
||||
GAME( 1987, bikkuric, 0, bikkuric,bikkuric, driver_device,0, ROT90, "<unknown>", "Bikkuri Card (Japan)", GAME_SUPPORTS_SAVE )
|
||||
|
Loading…
Reference in New Issue
Block a user