Previous 199869 Revisions Next

r18295 Friday 5th October, 2012 at 18:54:54 UTC by hap
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)."
[src/mame/drivers]m52.c timeplt.c

trunk/src/mame/drivers/m52.c
r18294r18295
382382
383383void m52_state::machine_reset()
384384{
385
386385   m_bg1xpos = 0;
387386   m_bg1ypos = 0;
388387   m_bg2xpos = 0;
r18294r18295
398397   MCFG_CPU_IO_MAP(main_portmap)
399398   MCFG_CPU_VBLANK_INT_DRIVER("screen", m52_state,  irq0_line_hold)
400399
401
402400   /* video hardware */
403401   MCFG_GFXDECODE(m52)
404402   MCFG_PALETTE_LENGTH(128*4+16*4+3*4)
r18294r18295
407405   MCFG_SCREEN_RAW_PARAMS(MASTER_CLOCK/3, 384, 136, 376, 282, 22, 274)
408406   MCFG_SCREEN_UPDATE_DRIVER(m52_state, screen_update_m52)
409407
410
411408   /* sound hardware */
412409   MCFG_FRAGMENT_ADD(m52_sound_c_audio)
413410MACHINE_CONFIG_END
r18294r18295
547544
548545GAME( 1982, mpatrol,  0,        m52,      mpatrol, driver_device,  0, ROT0, "Irem", "Moon Patrol", GAME_SUPPORTS_SAVE )
549546GAME( 1982, mpatrolw, mpatrol,  m52,      mpatrolw, driver_device, 0, ROT0, "Irem (Williams license)", "Moon Patrol (Williams)", GAME_SUPPORTS_SAVE )
550GAME( 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 )
547GAME( 1988, alpha1v,  0,        alpha1v,  alpha1v, driver_device,  0, ROT0, "Vision Electronics", "Alpha One (Vision Electronics)", GAME_NOT_WORKING| GAME_NO_SOUND| GAME_SUPPORTS_SAVE )
trunk/src/mame/drivers/timeplt.c
r18294r18295
6161
6262INTERRUPT_GEN_MEMBER(timeplt_state::timeplt_interrupt)
6363{
64
6564   if (m_nmi_enable)
6665      device.execute().set_input_line(INPUT_LINE_NMI, ASSERT_LINE);
6766}
r18294r18295
9594// chkun has access to an extra soundchip via ay2 port a
9695WRITE8_MEMBER(timeplt_state::chkun_sound_w)
9796{
98
9997   // d0-d3: P0-P3
10098   // d5: /R (unused?)
10199   // d6: /W
r18294r18295
454452
455453void timeplt_state::machine_start()
456454{
457
458455   save_item(NAME(m_nmi_enable));
459456}
460457
461458void timeplt_state::machine_reset()
462459{
463
464460   m_nmi_enable = 0;
465461}
466462
r18294r18295
471467   MCFG_CPU_PROGRAM_MAP(timeplt_main_map)
472468   MCFG_CPU_VBLANK_INT_DRIVER("screen", timeplt_state,  timeplt_interrupt)
473469
474
475470   /* video hardware */
476471   MCFG_VIDEO_ATTRIBUTES(VIDEO_UPDATE_SCANLINE)
477472
r18294r18295
484479   MCFG_GFXDECODE(timeplt)
485480   MCFG_PALETTE_LENGTH(32*4+64*4)
486481
487
488482   /* sound hardware */
489483   MCFG_FRAGMENT_ADD(timeplt_sound)
490484MACHINE_CONFIG_END
r18294r18295
712706GAME( 1982, timepltc, timeplt, timeplt, timeplt, driver_device, 0, ROT90,  "Konami (Centuri license)", "Time Pilot (Centuri)", GAME_SUPPORTS_SAVE )
713707GAME( 1982, timeplta, timeplt, timeplt, timeplt, driver_device, 0, ROT90,  "Konami (Atari license)", "Time Pilot (Atari)", GAME_SUPPORTS_SAVE )
714708GAME( 1982, spaceplt, timeplt, timeplt, timeplt, driver_device, 0, ROT90,  "bootleg", "Space Pilot", GAME_SUPPORTS_SAVE )
715GAME( 1988, psurge,   0,       psurge,  psurge, driver_device,  0, ROT270, "Vision Electronics / Kyle Hodgetts", "Power Surge", GAME_SUPPORTS_SAVE )
709GAME( 1988, psurge,   0,       psurge,  psurge, driver_device,  0, ROT270, "Vision Electronics", "Power Surge", GAME_SUPPORTS_SAVE )
716710// ROM says manufactured by Peni Soft for these two ... no, I'm not going to add THAT -.-"
717711GAME( 1988, chkun,    0,       chkun,   chkun, driver_device,   0, ROT90,  "<unknown>", "Chance Kun (Japan)", GAME_SUPPORTS_SAVE | GAME_IMPERFECT_SOUND )
718712GAME( 1987, bikkuric, 0,       bikkuric,bikkuric, driver_device,0, ROT90,  "<unknown>", "Bikkuri Card (Japan)", GAME_SUPPORTS_SAVE )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team