summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mephisto_academy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mephisto_academy.cpp')
-rw-r--r--src/mame/drivers/mephisto_academy.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mame/drivers/mephisto_academy.cpp b/src/mame/drivers/mephisto_academy.cpp
index 41222786920..ee192750b48 100644
--- a/src/mame/drivers/mephisto_academy.cpp
+++ b/src/mame/drivers/mephisto_academy.cpp
@@ -1,7 +1,7 @@
// license:BSD-3-Clause
// copyright-holders:Sandro Ronco, hap
// thanks-to:yoyo_chessboard
-/***************************************************************************
+/******************************************************************************
Mephisto Academy
@@ -18,7 +18,7 @@ Since the program is on an external module, it appears it was meant to be
a modular chesscomputer. However, no extra modules were sold separately.
Module PCB is the same as Super Mondial II College, label HGS 10 116 05.
-***************************************************************************/
+******************************************************************************/
#include "emu.h"
@@ -126,6 +126,7 @@ INPUT_PORTS_END
void academy_state::academy(machine_config &config)
{
+ /* basic machine hardware */
M65C02(config, m_maincpu, 4.9152_MHz_XTAL);
m_maincpu->set_addrmap(AS_PROGRAM, &academy_state::main_map);
@@ -140,6 +141,7 @@ void academy_state::academy(machine_config &config)
MEPHISTO_SENSORS_BOARD(config, "board"); // internal
MEPHISTO_DISPLAY_MODULE2(config, "display"); // internal
+ /* video hardware */
PWM_DISPLAY(config, m_led_pwm).set_size(4, 4);
config.set_default_layout(layout_mephisto_academy);
}
@@ -176,7 +178,7 @@ ROM_END
Game Drivers
***************************************************************************/
-/* YEAR, NAME, PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS */
+/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS */
CONS( 1989, academy, 0, 0, academy, academy, academy_state, empty_init, "Hegener + Glaser", "Mephisto Academy (English)", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK )
CONS( 1989, academyg, academy, 0, academy, academy, academy_state, empty_init, "Hegener + Glaser", "Mephisto Academy (German, 06-03-89)", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK )
CONS( 1989, academyga, academy, 0, academy, academy, academy_state, empty_init, "Hegener + Glaser", "Mephisto Academy (German, 04-10-88)", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK )