mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
source org: move champbwl.cpp to seta folder
This commit is contained in:
parent
5f71cfecb7
commit
4b82a0797e
@ -8,6 +8,8 @@ Excalibur Ivan The Terrible (model 701E, H8/3256 version)
|
||||
This is the first version, see ivant.cpp for the newer version. It was produced
|
||||
in a factory owned by Eric White's company (ex-CXG), hence it's not that strange
|
||||
that the LCD is the same as the one in CXG Sphinx Legend and Krypton Challenge.
|
||||
Ron Nelson was reluctant about it, since it was the same person that bootlegged
|
||||
his Chess Challenger 10.
|
||||
|
||||
Hardware notes:
|
||||
- PCB label: EXCALIBUR ELECTRONICS, INC. 6/28/96, IVANT
|
||||
|
@ -41169,6 +41169,11 @@ prpht600 // 1983 Sequential Circuits
|
||||
@source:seta/albazc.cpp
|
||||
hanaroku // (c) 1988 Alba
|
||||
|
||||
@source:seta/champbwl.cpp
|
||||
champbwl // (c)1989 Romstar
|
||||
champbwla // (c)1989 Romstar
|
||||
doraemon // Sunsoft / Epoch / Fujiko - Shogakukan - TV Asahi (prototype)
|
||||
|
||||
@source:seta/downtown.cpp
|
||||
arbalest // UK (c) 1989 + Jordan, Romstar or Taito license (DSW)
|
||||
calibr50 // UH (c) 1989 + Romstar or Taito license (DSW)
|
||||
@ -43285,11 +43290,6 @@ cchance // (c)1987 Taito?
|
||||
@source:taito/chaknpop.cpp
|
||||
chaknpop // AO4 (c) 1983 Taito Corporation
|
||||
|
||||
@source:taito/champbwl.cpp
|
||||
champbwl // (c)1989 Romstar. not Taito, but the same Seta video chips
|
||||
champbwla // (c)1989 Romstar. not Taito, but the same Seta video chips
|
||||
doraemon // Sunsoft / Epoch / Fujiko - Shogakukan - TV Asahi (prototype)
|
||||
|
||||
@source:taito/changela.cpp
|
||||
changela // ??? (c) 1983 Taito Corporation
|
||||
|
||||
|
@ -217,8 +217,8 @@ private:
|
||||
required_ioport_array<2> m_fakex;
|
||||
required_ioport_array<2> m_fakey;
|
||||
|
||||
bool m_input_select;
|
||||
uint8_t m_last_trackball_val[2][2];
|
||||
uint8_t m_input_select = 0;
|
||||
uint8_t m_last_trackball_val[2][2] = { };
|
||||
};
|
||||
|
||||
class doraemon_state : public champbwl_base_state
|
||||
@ -522,7 +522,7 @@ void champbwl_state::machine_start()
|
||||
|
||||
void champbwl_state::machine_reset()
|
||||
{
|
||||
m_input_select = false;
|
||||
m_input_select = 0;
|
||||
m_last_trackball_val[0][0] = 0;
|
||||
m_last_trackball_val[0][1] = 0;
|
||||
m_last_trackball_val[1][0] = 0;
|
||||
@ -767,6 +767,7 @@ ROM_END
|
||||
} // Anonymous namespace
|
||||
|
||||
|
||||
GAME( 1993?, doraemon, 0, doraemon, doraemon, doraemon_state, empty_init, ROT0, "Sunsoft / Epoch", "Doraemon no Eawase Montage (prototype)", MACHINE_SUPPORTS_SAVE ) // year not shown, datecodes on pcb suggests late-1993
|
||||
GAME( 1989, champbwl, 0, champbwl, champbwl, champbwl_state, empty_init, ROT270, "Seta / Romstar Inc.", "Championship Bowling", MACHINE_SUPPORTS_SAVE )
|
||||
GAME( 1989, champbwla, champbwl, champbwl, champbwl, champbwl_state, empty_init, ROT270, "Seta / Romstar Inc.", "Championship Bowling (location test)", MACHINE_SUPPORTS_SAVE )
|
||||
|
||||
GAME( 1993?, doraemon, 0, doraemon, doraemon, doraemon_state, empty_init, ROT0, "Sunsoft / Epoch", "Doraemon no Eawase Montage (prototype)", MACHINE_SUPPORTS_SAVE ) // year not shown, datecodes on pcb suggests late-1993
|
@ -73,7 +73,7 @@ d304 - d307 = SCCON1 to SCCON4
|
||||
|
||||
d613 = /SoundCS = /RESET line on all audio CPUs
|
||||
|
||||
d700 - d7ff = ( /VCRRQ - palette ram )
|
||||
d700 - d77f = ( /VCRRQ - palette ram )
|
||||
|
||||
d800 - d8ff /ScrollRQ (S37)
|
||||
da00 - daff /ScrollRQ (S37)
|
||||
|
Loading…
Reference in New Issue
Block a user