mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
hitparade: change SYST to GAME
This commit is contained in:
parent
89b687b30b
commit
7eee0ca8fb
@ -44,7 +44,7 @@ public:
|
||||
hitpar_state(const machine_config &mconfig, device_type type, const char *tag) :
|
||||
driver_device(mconfig, type, tag),
|
||||
m_maincpu(*this, "maincpu"),
|
||||
m_nvram(*this, "nvram", 0x200),
|
||||
m_nvram(*this, "nvram", 0x200, ENDIANNESS_BIG),
|
||||
m_display(*this, "display"),
|
||||
m_inputs(*this, "IN.%u", 0)
|
||||
{ }
|
||||
@ -117,9 +117,9 @@ u8 hitpar_state::read_k()
|
||||
u8 data = 0;
|
||||
|
||||
// read RAM
|
||||
if (BIT(data, 14))
|
||||
if (BIT(m_r, 14))
|
||||
data |= m_nvram[m_r & 0xff];
|
||||
if (BIT(data, 15))
|
||||
if (BIT(m_r, 15))
|
||||
data |= m_nvram[(m_r & 0xff) | 0x100];
|
||||
|
||||
// read inputs
|
||||
@ -220,5 +220,5 @@ ROM_END
|
||||
Drivers
|
||||
******************************************************************************/
|
||||
|
||||
// YEAR NAME PARENT CMP MACHINE INPUT STATE INIT COMPANY, FULLNAME, FLAGS
|
||||
SYST( 1977, hitpar, 0, 0, hitpar, hitpar, hitpar_state, empty_init, "Atari Europe", "Hit Parade 108 / 144 / 160", MACHINE_SUPPORTS_SAVE | MACHINE_MECHANICAL | MACHINE_NO_SOUND | MACHINE_NOT_WORKING )
|
||||
// YEAR NAME PARENT MACHINE INPUT STATE INIT SCREEN COMPANY, FULLNAME, FLAGS
|
||||
GAME( 1977, hitpar, 0, hitpar, hitpar, hitpar_state, empty_init, ROT0, "Atari Europe", "Hit Parade 108 / 144 / 160", MACHINE_SUPPORTS_SAVE | MACHINE_MECHANICAL | MACHINE_NO_SOUND | MACHINE_NOT_WORKING )
|
||||
|
@ -11,7 +11,8 @@ QTY Type clock position function
|
||||
3x P8255A-5 ic11,ic25,ic31 Programmable Peripheral Interface
|
||||
1x MM5450N ic29 LED Display Driver - main
|
||||
2x LM358 ic64,ic65 Dual Operational Amplifier - sound
|
||||
1x oscillator 6.0MHz Q1
|
||||
1x oscillator 6.0MHz Q1 Near MCU
|
||||
1x oscillator ?MHz Q2 Near Z80 (ceramic resonator)
|
||||
|
||||
ROMs
|
||||
QTY Type position status
|
||||
@ -43,7 +44,7 @@ QTY Type
|
||||
1x red LED (5V)
|
||||
1x red LED (5V)
|
||||
1x red LED (5V)
|
||||
1x 16 digits LED display (on solder side), each digit is made by 18 segments
|
||||
1x 16 digits VFD (on solder side), each digit is made by 18 segments
|
||||
Notes
|
||||
|
||||
This is the PCB for one of the first ever CD based Juke Box, made in 1988 by Midcoin, some info here:
|
||||
|
Loading…
Reference in New Issue
Block a user