From 7eee0ca8fbbe7cbe23329c82bdac65277c336971 Mon Sep 17 00:00:00 2001 From: hap Date: Thu, 18 Aug 2022 12:24:21 +0200 Subject: hitparade: change SYST to GAME --- src/mame/atari/hitparade.cpp | 10 +++++----- src/mame/midcoin/24cdjuke.cpp | 5 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/mame/atari/hitparade.cpp b/src/mame/atari/hitparade.cpp index 7f8862c54b2..8db024e5e56 100644 --- a/src/mame/atari/hitparade.cpp +++ b/src/mame/atari/hitparade.cpp @@ -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 ) diff --git a/src/mame/midcoin/24cdjuke.cpp b/src/mame/midcoin/24cdjuke.cpp index 848cfbfb1a7..66d93739cb2 100644 --- a/src/mame/midcoin/24cdjuke.cpp +++ b/src/mame/midcoin/24cdjuke.cpp @@ -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: -- cgit v1.2.3