mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
- misc/unkgolf.cpp: added missing XTAL value [hammy]
- nmk/nmkmedal.cpp: corrected typo in Doraemon [Heihachi_73]
This commit is contained in:
parent
0e6efa6258
commit
cede97e6ae
@ -12,8 +12,8 @@ Sharp LH0082A Z80A-CTC-D
|
||||
HM6264ALP-15 RAM
|
||||
4x TMP82C55AP-2 (with 2 more empty spaces)
|
||||
OKI M6376
|
||||
? XTAL
|
||||
4.096 XTAL
|
||||
20 Mhz XTAL
|
||||
4.096 Mhz XTAL
|
||||
8-DIP bank
|
||||
1 push button
|
||||
*/
|
||||
@ -113,12 +113,12 @@ static const z80_daisy_config daisy_chain[] =
|
||||
|
||||
void unkgolf_state::unkgolf(machine_config &config)
|
||||
{
|
||||
Z80(config, m_maincpu, 4'000'000); // need to verify unreadable XTAL
|
||||
Z80(config, m_maincpu, 20_MHz_XTAL / 5); // divisor unknown
|
||||
m_maincpu->set_daisy_config(daisy_chain);
|
||||
m_maincpu->set_addrmap(AS_PROGRAM, &unkgolf_state::program_map);
|
||||
m_maincpu->set_addrmap(AS_IO, &unkgolf_state::io_map);
|
||||
|
||||
z80ctc_device& ctc(Z80CTC(config, "ctc", 4'000'000));
|
||||
z80ctc_device& ctc(Z80CTC(config, "ctc", 20_MHz_XTAL / 5)); // divisor unknown
|
||||
ctc.intr_callback().set_inputline(m_maincpu, INPUT_LINE_IRQ0);
|
||||
|
||||
I8255(config, "ppi0");
|
||||
|
@ -101,6 +101,7 @@ NMK MAC96117
|
||||
|
||||
-------
|
||||
Shimura Ken no Bakatono-sama Ooedomatsuri by NMK
|
||||
The Power Link PCB is basically the same, but with ROMs on a daughterboard.
|
||||
|
||||
Video of the game: https://www.youtube.com/watch?v=9HGdS2ydZDo
|
||||
|
||||
@ -438,5 +439,5 @@ GAME( 1996, trocana, 0, trocana, trocana, trocana_state, empty_init, ROT0,
|
||||
GAME( 1996, hpierrot, 0, hpierrot, trocana, hpierrot_state, empty_init, ROT0, "NTC / NMK", "Happy Pierrot", MACHINE_IS_SKELETON_MECHANICAL ) // NTC LTD, NMK LTD, V96821 strings
|
||||
GAME( 1996, sweethrt, 0, sweethrt, trocana, hpierrot_state, empty_init, ROT0, "NMK", "Sweetheart", MACHINE_IS_SKELETON_MECHANICAL ) // NMK LTD, V96B29° strings
|
||||
GAME( 1999, omatsuri, 0, omatsuri, trocana, omatsuri_state, empty_init, ROT0, "NMK / Sega", "Shimura Ken no Bakatono-sama Ooedomatsuri", MACHINE_IS_SKELETON_MECHANICAL ) // NMK LTD, V99422 strings. Cabinet has NMK logo, manual has Sega logo
|
||||
GAME( 1999, pldoraemon, 0, omatsuri, trocana, omatsuri_state, empty_init, ROT0, "NMK", "Doreamon (Power Link)", MACHINE_IS_SKELETON_MECHANICAL ) // NMK LTD, V99204°, DORAMON (sic), STEPPING_PCB200_CAP75 strings
|
||||
GAME( 1999, pldoraemon, 0, omatsuri, trocana, omatsuri_state, empty_init, ROT0, "NMK", "Doraemon (Power Link)", MACHINE_IS_SKELETON_MECHANICAL ) // NMK LTD, V99204°, DORAMON (sic), STEPPING_PCB200_CAP75 strings
|
||||
GAME( 1998, plpittashi, 0, omatsuri, trocana, omatsuri_state, empty_init, ROT0, "NMK", "Love Pi Chan (Power Link)", MACHINE_IS_SKELETON_MECHANICAL ) // NMK LTD, V98622°, LOVE PI, CHAN strings (title taken from string, very probably wrong)
|
||||
|
Loading…
Reference in New Issue
Block a user