New working machines added

--------------------------
Mephisto Super Mondial [yoyo_chessboard, Sandro Ronco]
Mephisto Super Mondial II [yoyo_chessboard, Sandro Ronco]
This commit is contained in:
Sandro Ronco 2017-09-21 21:09:55 +02:00
parent 3a06bb0633
commit 1d82c2ecbb
4 changed files with 441 additions and 1 deletions

View File

@ -1,10 +1,13 @@
// license:BSD-3-Clause
// copyright-holders:Sandro Ronco
// thanks-to:yoyo_chessboard
/**************************************************************************************************
Mephisto Monte Carlo
Mephisto Mega IV
Mephisto Monte Carlo IV LE
Mephisto Super Mondial
Mephisto Super Mondial II
**************************************************************************************************/
@ -16,9 +19,12 @@
#include "screen.h"
#include "speaker.h"
#include "bus/generic/slot.h"
#include "bus/generic/carts.h"
#include "mephisto_montec.lh"
#include "mephisto_megaiv.lh"
#include "mephisto_smondial2.lh"
class mephisto_montec_state : public driver_device
@ -47,6 +53,9 @@ public:
DECLARE_READ8_MEMBER(megaiv_input_r);
DECLARE_WRITE8_MEMBER(megaiv_led_w);
DECLARE_WRITE8_MEMBER(smondial_board_mux_w);
DECLARE_WRITE8_MEMBER(smondial_led_data_w);
protected:
virtual void machine_start() override;
virtual void machine_reset() override;
@ -60,6 +69,7 @@ private:
uint8_t m_lcd_mux;
uint8_t m_input_mux;
uint8_t m_leds_mux;
uint8_t m_smondial_board_mux;
struct display_t
{
@ -76,6 +86,7 @@ void mephisto_montec_state::machine_start()
save_item(NAME(m_lcd_mux));
save_item(NAME(m_input_mux));
save_item(NAME(m_leds_mux));
save_item(NAME(m_smondial_board_mux));
save_item(NAME(m_display.pos));
save_item(NAME(m_display.shift));
save_item(NAME(m_display.data));
@ -87,6 +98,7 @@ void mephisto_montec_state::machine_reset()
m_lcd_mux = 0x00;
m_input_mux = 0x00;
m_leds_mux = 0x00;
m_smondial_board_mux = 0xff;
m_display.pos = 0;
m_display.shift = 0;
@ -244,6 +256,54 @@ static ADDRESS_MAP_START(megaiv_mem , AS_PROGRAM, 8, mephisto_montec_state )
AM_RANGE( 0x8000, 0xffff ) AM_ROM
ADDRESS_MAP_END
static ADDRESS_MAP_START(smondial2_mem , AS_PROGRAM, 8, mephisto_montec_state )
AM_IMPORT_FROM(megaiv_mem)
AM_RANGE( 0x4000, 0x7fff ) AM_DEVREAD("cartslot", generic_slot_device, read_rom)
ADDRESS_MAP_END
WRITE8_MEMBER(mephisto_montec_state::smondial_board_mux_w)
{
if (data)
m_smondial_board_mux &= ~(1 << offset);
else
m_smondial_board_mux |= (1 << offset);
m_board->mux_w(space, offset, m_smondial_board_mux);
for (int i=0; i<8; i++)
{
if (m_leds_mux & 0x03) output().set_led_value(100 + i, BIT(m_smondial_board_mux, i) ? 0 : 1);
if (m_leds_mux & 0x0c) output().set_led_value( 8 + i, BIT(m_smondial_board_mux, i) ? 0 : 1);
if (m_leds_mux & 0x30) output().set_led_value( 0 + i, BIT(m_smondial_board_mux, i) ? 0 : 1);
}
}
WRITE8_MEMBER(mephisto_montec_state::smondial_led_data_w)
{
if (data & 0x80)
m_leds_mux &= ~(1 << offset);
else
m_leds_mux |= (1 << offset);
m_beeper->set_state(BIT(m_leds_mux, 7));
}
static ADDRESS_MAP_START(smondial_mem , AS_PROGRAM, 8, mephisto_montec_state )
AM_RANGE( 0x0000, 0x1fff ) AM_RAM AM_SHARE("nvram")
AM_RANGE( 0x4000, 0x4007 ) AM_READ(megaiv_input_r)
AM_RANGE( 0x6400, 0x6407 ) AM_WRITE(smondial_led_data_w)
AM_RANGE( 0x6800, 0x6807 ) AM_WRITE(smondial_board_mux_w)
AM_RANGE( 0x6c00, 0x6c03 ) AM_WRITE(montec_mux_w)
AM_RANGE( 0x6c04, 0x6c04 ) AM_WRITE(montec_lcd_data_w)
AM_RANGE( 0x6c05, 0x6c05 ) AM_WRITE(montec_ldc_cs1_w)
AM_RANGE( 0x6c06, 0x6c06 ) AM_WRITE(montec_lcd_clk_w)
AM_RANGE( 0x6c07, 0x6c07 ) AM_WRITE(montec_ldc_cs0_w)
AM_RANGE( 0x8000, 0xffff ) AM_ROM
ADDRESS_MAP_END
static INPUT_PORTS_START( montec )
PORT_START("KEY.0")
PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_NAME("1 Pawn") PORT_CODE(KEYCODE_1)
@ -288,6 +348,27 @@ static INPUT_PORTS_START( megaiv )
PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("Level") PORT_CODE(KEYCODE_L)
INPUT_PORTS_END
static INPUT_PORTS_START( smondial2 )
PORT_START("KEY.0")
PORT_BIT(0x01, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("3 Bishop") PORT_CODE(KEYCODE_3)
PORT_BIT(0x02, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("7 Black") PORT_CODE(KEYCODE_7)
PORT_BIT(0x04, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("Pos") PORT_CODE(KEYCODE_O)
PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("Enter") PORT_CODE(KEYCODE_ENTER)
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("4 Rook") PORT_CODE(KEYCODE_4)
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("8 White") PORT_CODE(KEYCODE_8)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("Mem") PORT_CODE(KEYCODE_M)
PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("Reset") PORT_CODE(KEYCODE_DEL)
PORT_START("KEY.1")
PORT_BIT(0x01, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("1 Pawn") PORT_CODE(KEYCODE_1)
PORT_BIT(0x02, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("5 Queen") PORT_CODE(KEYCODE_5)
PORT_BIT(0x04, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("9 Help") PORT_CODE(KEYCODE_9) PORT_CODE(KEYCODE_H)
PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("Level") PORT_CODE(KEYCODE_L)
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("2 Knight") PORT_CODE(KEYCODE_2)
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("6 King") PORT_CODE(KEYCODE_6)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("0 Info") PORT_CODE(KEYCODE_0) PORT_CODE(KEYCODE_I)
PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("Clear") PORT_CODE(KEYCODE_BACKSPACE)
INPUT_PORTS_END
static MACHINE_CONFIG_START( montec )
MCFG_CPU_ADD("maincpu", M65C02, XTAL_4MHz)
@ -321,6 +402,21 @@ static MACHINE_CONFIG_DERIVED( megaiv, montec )
MCFG_DEFAULT_LAYOUT(layout_mephisto_megaiv)
MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( smondial, megaiv )
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_CLOCK( XTAL_4MHz )
MCFG_CPU_PROGRAM_MAP(smondial_mem)
MCFG_CPU_PERIODIC_INT_DRIVER(mephisto_montec_state, nmi_line_pulse, (double)XTAL_4MHz / (1 << 13))
MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( smondial2, smondial )
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_PROGRAM_MAP(smondial2_mem)
MCFG_GENERIC_CARTSLOT_ADD("cartslot", generic_plain_slot, "smondial2_cart")
MCFG_DEFAULT_LAYOUT(layout_mephisto_smondial2)
MACHINE_CONFIG_END
ROM_START(megaiv)
ROM_REGION(0x10000, "maincpu", 0)
@ -337,8 +433,20 @@ ROM_START(montec)
ROM_LOAD("mc.bin", 0x08000, 0x08000, CRC(05524da9) SHA1(bee2ffe09a27095f733584e0fb1203b95c23e17e))
ROM_END
ROM_START(smondial)
ROM_REGION(0x10000, "maincpu", 0)
ROM_LOAD("mephisto super mondial I.bin", 0x8000, 0x8000, CRC(c1d7d0a5) SHA1(d7f0da6938458c06925f0936e63915319144d7e0))
ROM_END
ROM_START(smondial2)
ROM_REGION(0x10000, "maincpu", 0)
ROM_LOAD("supermondial_II.bin", 0x8000, 0x8000, CRC(cd73df4a) SHA1(bad786074be613d7f48bf98b6fdf8178a4a85f5b))
ROM_END
/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS */
CONS( 1986, smondial, 0, 0, smondial, megaiv, mephisto_montec_state, 0, "Hegener & Glaser", "Mephisto Super Mondial", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK )
CONS( 1987, montec, 0, 0, montec, montec, mephisto_montec_state, 0, "Hegener & Glaser", "Mephisto Monte Carlo", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK )
CONS( 1989, smondial2,0, 0, smondial2, smondial2,mephisto_montec_state, 0, "Hegener & Glaser", "Mephisto Super Mondial II", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK )
CONS( 1989, megaiv, 0, 0, megaiv, megaiv, mephisto_montec_state, 0, "Hegener & Glaser", "Mephisto Mega IV", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK )
CONS( 1990, monteciv, montec, 0, monteciv, montec, mephisto_montec_state, 0, "Hegener & Glaser", "Mephisto Monte Carlo IV LE", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK )

View File

@ -101,6 +101,7 @@ class mephisto_modena_state : public mephisto_polgar_state
public:
mephisto_modena_state(const machine_config &mconfig, device_type type, const char *tag)
: mephisto_polgar_state(mconfig, type, tag)
, m_maincpu(*this, "maincpu")
, m_board(*this, "board")
, m_beeper(*this, "beeper")
{ }
@ -109,12 +110,15 @@ public:
DECLARE_WRITE8_MEMBER(modena_digits_w);
DECLARE_WRITE8_MEMBER(modena_io_w);
DECLARE_WRITE8_MEMBER(modena_led_w);
TIMER_DEVICE_CALLBACK_MEMBER(nmi_on) { m_maincpu->set_input_line(M6502_NMI_LINE, ASSERT_LINE); }
TIMER_DEVICE_CALLBACK_MEMBER(nmi_off) { m_maincpu->set_input_line(M6502_NMI_LINE, CLEAR_LINE); }
protected:
virtual void machine_reset() override;
virtual void machine_start() override;
private:
required_device<cpu_device> m_maincpu;
required_device<mephisto_board_device> m_board;
required_device<beep_device> m_beeper;
uint8_t m_digits_idx;
@ -527,7 +531,10 @@ static MACHINE_CONFIG_DERIVED( modena, milano )
MCFG_CPU_MODIFY("maincpu") // W65C02SP
MCFG_CPU_CLOCK(XTAL_4_194304Mhz)
MCFG_CPU_PROGRAM_MAP(modena_mem)
MCFG_CPU_PERIODIC_INT_DRIVER(mephisto_modena_state, nmi_line_pulse, (double)XTAL_4_194304Mhz / (1 << 13))
MCFG_CPU_PERIODIC_INT_REMOVE()
MCFG_TIMER_DRIVER_ADD_PERIODIC("nmi_on", mephisto_modena_state, nmi_on, attotime::from_hz((double)XTAL_4_194304Mhz / (1 << 13)))
MCFG_TIMER_START_DELAY(attotime::from_hz((double)XTAL_4_194304Mhz / (1 << 13)) - attotime::from_usec(975)) // active for 975us
MCFG_TIMER_DRIVER_ADD_PERIODIC("nmi_off", mephisto_modena_state, nmi_off, attotime::from_hz((double)XTAL_4_194304Mhz / (1 << 13)))
MCFG_DEVICE_REMOVE("display")
MCFG_DEFAULT_LAYOUT(layout_mephisto_modena)

View File

@ -0,0 +1,323 @@
<?xml version="1.0"?>
<mamelayout version="2">
<!-- define elements -->
<element name="digit" defstate="0">
<led7seg>
<color red="0.75" green="0.0" blue="0.0" />
</led7seg>
</element>
<element name="led" defstate="0">
<rect state="0">
<color red="0.20" green="0.0" blue="0.0" />
</rect>
<rect state="1">
<color red="0.95" green="0.0" blue="0.0" />
</rect>
</element>
<element name="hl" defstate="0">
<text string=" ">
<bounds x="0.0" y="0.0" width="1.0" height="1.0" />
<color red="0.0" green="0.0" blue="0.0" />
</text>
<disk state="1">
<bounds x="0.12" y="0.12" width="0.76" height="0.76" />
<color red="0.5" green="0.5" blue="0.5" />
</disk>
</element>
<element name="hlb" defstate="0">
<rect state="0">
<bounds x="0.0" y="0.0" width="1.0" height="1.0" />
<color red="1" green="1" blue="1" />
</rect>
<rect state="1">
<bounds x="0.0" y="0.0" width="1.0" height="1.0" />
<color red="0.8" green="0.8" blue="0.8" />
</rect>
</element>
<element name="led7seg_background"><rect><color red="0" green="0" blue="0" /> </rect></element>
<element name="background"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect></element>
<element name="black"> <rect><color red="0" green="0" blue="0" /> </rect></element>
<element name="white"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect></element>
<element name="text_1"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="1"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_2"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="2"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_3"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="3"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_4"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="4"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_5"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="5"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_6"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="6"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_7"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="7"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_8"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="8"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_a"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="A"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_b"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="B"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_c"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="C"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_d"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="D"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_e"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="E"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_f"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="F"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_g"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="G"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_h"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="H"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_tutor"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="TUTOR"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_play"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="PLAY"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_info"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="INFO"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_wpos"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="POS"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_wmem"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="MEM"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_wlev"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="LEV"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_black"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="&#x25a0;"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_white"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="&#x25a1;"> <color red="0" green="0" blue="0" /></text> </element>
<element name="text_pos"> <rect><color red="0" green="0" blue="0" /></rect> <text string="POS"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_mem"> <rect><color red="0" green="0" blue="0" /></rect> <text string="MEM"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_lev"> <rect><color red="0" green="0" blue="0" /></rect> <text string="LEV"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_b1"> <rect><color red="0" green="0" blue="0" /></rect> <text string="&#x265f; 1"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_b2"> <rect><color red="0" green="0" blue="0" /></rect> <text string="&#x265e; 2"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_b3"> <rect><color red="0" green="0" blue="0" /></rect> <text string="&#x265d; 3"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_b4"> <rect><color red="0" green="0" blue="0" /></rect> <text string="&#x265c; 4"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_b5"> <rect><color red="0" green="0" blue="0" /></rect> <text string="&#x265b; 5"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_b6"> <rect><color red="0" green="0" blue="0" /></rect> <text string="&#x265a; 6"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_b7"> <rect><color red="0" green="0" blue="0" /></rect> <text string="&#x25a1; 7 &#x25c0;"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_b8"> <rect><color red="0" green="0" blue="0" /></rect> <text string="&#x25a0; 8 &#x25b6;"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_help9"> <rect><color red="0.8" green="0" blue="0" /></rect> <text string="HELP 9"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_info0"> <rect><color red="0" green="0" blue="0" /></rect> <text string="INFO 0"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_cl"> <rect><color red="0" green="0" blue="0" /></rect> <text string="CL"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_ent"> <rect><color red="0" green="0" blue="0" /></rect> <text string="ENT"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_res"> <rect><color red="0.8" green="0" blue="0" /></rect> <text string="RES"> <color red="1" green="1" blue="1" /></text> </element>
<element name="text_lcd"> <rect><color red="0.90" green="0.91" blue="0.89" /></rect> <text string="MULTI INFO LCD"><color red="0" green="0" blue="0" /></text> </element>
<!-- build screen -->
<group name="panel">
<bezel element="background"><bounds x="0" y="0" width="79" height="13" /></bezel>
<bezel element="text_lcd"> <bounds x="0.5" y="0" width="9" height="1.5" /> </bezel>
<bezel element="led7seg_background"> <bounds x="0.5" y="1.5" width="9" height="4" /> </bezel>
<bezel name="digit0" element="digit"> <bounds x="1" y="2" width="2" height="3" /> </bezel>
<bezel name="digit1" element="digit"> <bounds x="3" y="2" width="2" height="3" /> </bezel>
<bezel name="digit2" element="digit"> <bounds x="5" y="2" width="2" height="3" /> </bezel>
<bezel name="digit3" element="digit"> <bounds x="7" y="2" width="2" height="3" /> </bezel>
<bezel element="led7seg_background"> <bounds x="0.5" y="7.5" width="9" height="4" /> </bezel>
<bezel name="digit4" element="digit"> <bounds x="1" y="8" width="2" height="3" /> </bezel>
<bezel name="digit5" element="digit"> <bounds x="3" y="8" width="2" height="3" /> </bezel>
<bezel name="digit6" element="digit"> <bounds x="5" y="8" width="2" height="3" /> </bezel>
<bezel name="digit7" element="digit"> <bounds x="7" y="8" width="2" height="3" /> </bezel>
<bezel name="led100" element="led"> <bounds x="13.1" y="0.25" width="1.3" height="1" /> </bezel>
<bezel name="led101" element="led"> <bounds x="21.6" y="0.25" width="1.3" height="1" /> </bezel>
<bezel name="led102" element="led"> <bounds x="30.1" y="0.25" width="1.3" height="1" /> </bezel>
<bezel name="led103" element="led"> <bounds x="38.6" y="0.25" width="1.3" height="1" /> </bezel>
<bezel name="led104" element="led"> <bounds x="47.1" y="0.25" width="1.3" height="1" /> </bezel>
<bezel name="led105" element="led"> <bounds x="55.6" y="0.25" width="1.3" height="1" /> </bezel>
<bezel name="led106" element="led"> <bounds x="64.1" y="0.25" width="1.3" height="1" /> </bezel>
<bezel name="led107" element="led"> <bounds x="72.6" y="0.25" width="1.3" height="1" /> </bezel>
<bezel element="hlb" inputtag="KEY.1" inputmask="0x01"> <bounds x="13" y="2" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.1" inputmask="0x10"> <bounds x="21.5" y="2" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.0" inputmask="0x01"> <bounds x="30" y="2" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.0" inputmask="0x10"> <bounds x="38.5" y="2" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.1" inputmask="0x02"> <bounds x="47" y="2" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.1" inputmask="0x20"> <bounds x="55.5" y="2" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.0" inputmask="0x02"> <bounds x="64" y="2" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.0" inputmask="0x20"> <bounds x="72.5" y="2" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.1" inputmask="0x04"> <bounds x="13" y="7.5" width="6" height="4" /> <color red="0.8" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.1" inputmask="0x40"> <bounds x="21.5" y="7.5" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.0" inputmask="0x04"> <bounds x="30" y="7.5" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.0" inputmask="0x40"> <bounds x="38.5" y="7.5" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.1" inputmask="0x08"> <bounds x="47" y="7.5" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.1" inputmask="0x80"> <bounds x="55.5" y="7.5" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.0" inputmask="0x08"> <bounds x="64" y="7.5" width="6" height="4" /> <color red="0" green="0" blue="0" /></bezel>
<bezel element="hlb" inputtag="KEY.0" inputmask="0x80"> <bounds x="72.5" y="7.5" width="6" height="4" /> <color red="0.8" green="0" blue="0" /></bezel>
<bezel element="text_tutor"> <bounds x="15" y="0" width="4" height="1.5" /> </bezel>
<bezel element="text_info"> <bounds x="23.5" y="0" width="3.5" height="1.5" /> </bezel>
<bezel element="text_wpos"> <bounds x="32" y="0" width="3" height="1.5" /> </bezel>
<bezel element="text_wmem"> <bounds x="40.5" y="0" width="3" height="1.5" /> </bezel>
<bezel element="text_wlev"> <bounds x="49" y="0" width="3" height="1.5" /> </bezel>
<bezel element="text_play"> <bounds x="57.5" y="0" width="3.5" height="1.5" /> </bezel>
<bezel element="text_black"> <bounds x="66" y="0" width="1" height="1.5" /> </bezel>
<bezel element="text_white"> <bounds x="75" y="0" width="1" height="1.5" /> </bezel>
<bezel element="text_b1"> <bounds x="13.5" y="3.25" width="5" height="1.5" /> </bezel>
<bezel element="text_b2"> <bounds x="22" y="3.25" width="5" height="1.5" /> </bezel>
<bezel element="text_b3"> <bounds x="30.5" y="3.25" width="5" height="1.5" /> </bezel>
<bezel element="text_b4"> <bounds x="39" y="3.25" width="5" height="1.5" /> </bezel>
<bezel element="text_b5"> <bounds x="47.5" y="3.25" width="5" height="1.5" /> </bezel>
<bezel element="text_b6"> <bounds x="56" y="3.25" width="5" height="1.5" /> </bezel>
<bezel element="text_b7"> <bounds x="64.5" y="3.25" width="5" height="1.5" /> </bezel>
<bezel element="text_b8"> <bounds x="73" y="3.25" width="5" height="1.5" /> </bezel>
<bezel element="text_help9"> <bounds x="13.5" y="8.75" width="5" height="1.5" /> </bezel>
<bezel element="text_info0"> <bounds x="22" y="8.75" width="5" height="1.5" /> </bezel>
<bezel element="text_pos"> <bounds x="30.5" y="8.75" width="5" height="1.5" /> </bezel>
<bezel element="text_mem"> <bounds x="39" y="8.75" width="5" height="1.5" /> </bezel>
<bezel element="text_lev"> <bounds x="47.5" y="8.75" width="5" height="1.5" /> </bezel>
<bezel element="text_cl"> <bounds x="56" y="8.75" width="5" height="1.5" /> </bezel>
<bezel element="text_ent"> <bounds x="64.5" y="8.75" width="5" height="1.5" /> </bezel>
<bezel element="text_res"> <bounds x="73" y="8.75" width="5" height="1.5" /> </bezel>
</group>
<view name="Chessboard + Display">
<bezel element="background"><bounds x="-2" y="0" width="88" height="102" /></bezel>
<!-- chessboard coords -->
<bezel element="text_8"><bounds x="-1.5" y="7" width="2" height="2" /></bezel>
<bezel element="text_7"><bounds x="-1.5" y="17" width="2" height="2" /></bezel>
<bezel element="text_6"><bounds x="-1.5" y="27" width="2" height="2" /></bezel>
<bezel element="text_5"><bounds x="-1.5" y="37" width="2" height="2" /></bezel>
<bezel element="text_4"><bounds x="-1.5" y="47" width="2" height="2" /></bezel>
<bezel element="text_3"><bounds x="-1.5" y="57" width="2" height="2" /></bezel>
<bezel element="text_2"><bounds x="-1.5" y="67" width="2" height="2" /></bezel>
<bezel element="text_1"><bounds x="-1.5" y="77" width="2" height="2" /></bezel>
<bezel element="text_a"><bounds x="7" y="86" width="2" height="2" /></bezel>
<bezel element="text_b"><bounds x="17" y="86" width="2" height="2" /></bezel>
<bezel element="text_c"><bounds x="27" y="86" width="2" height="2" /></bezel>
<bezel element="text_d"><bounds x="37" y="86" width="2" height="2" /></bezel>
<bezel element="text_e"><bounds x="47" y="86" width="2" height="2" /></bezel>
<bezel element="text_f"><bounds x="57" y="86" width="2" height="2" /></bezel>
<bezel element="text_g"><bounds x="67" y="86" width="2" height="2" /></bezel>
<bezel element="text_h"><bounds x="77" y="86" width="2" height="2" /></bezel>
<!-- chessboard bezel -->
<bezel element="black"><bounds x="2.5" y="2.5" width="81" height="81" /></bezel>
<bezel element="white"><bounds x="3" y="3" width="80" height="80" /></bezel>
<bezel element="black"><bounds x="13" y="2.5" width="10" height="10.5" /></bezel>
<bezel element="black"><bounds x="33" y="2.5" width="10" height="10.5" /></bezel>
<bezel element="black"><bounds x="53" y="2.5" width="10" height="10.5" /></bezel>
<bezel element="black"><bounds x="73" y="2.5" width="10.5" height="10.5" /></bezel>
<bezel element="black"><bounds x="2.5" y="13" width="10.5" height="10" /></bezel>
<bezel element="black"><bounds x="23" y="13" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="43" y="13" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="63" y="13" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="13" y="23" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="33" y="23" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="53" y="23" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="73" y="23" width="10.5" height="10" /></bezel>
<bezel element="black"><bounds x="2.5" y="33" width="10.5" height="10" /></bezel>
<bezel element="black"><bounds x="23" y="33" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="43" y="33" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="63" y="33" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="13" y="43" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="33" y="43" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="53" y="43" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="73" y="43" width="10.5" height="10" /></bezel>
<bezel element="black"><bounds x="2.5" y="53" width="10.5" height="10" /></bezel>
<bezel element="black"><bounds x="23" y="53" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="43" y="53" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="63" y="53" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="13" y="63" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="33" y="63" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="53" y="63" width="10" height="10" /></bezel>
<bezel element="black"><bounds x="73" y="63" width="10.5" height="10" /></bezel>
<bezel element="black"><bounds x="2.5" y="73" width="10.5" height="10.5" /></bezel>
<bezel element="black"><bounds x="23" y="73" width="10" height="10.5" /></bezel>
<bezel element="black"><bounds x="43" y="73" width="10" height="10.5" /></bezel>
<bezel element="black"><bounds x="63" y="73" width="10" height="10.5" /></bezel>
<!-- chessboard leds -->
<bezel name="led0" element="led"><bounds x="0.5" y="77.25" width="1" height="1.5" /></bezel>
<bezel name="led1" element="led"><bounds x="0.5" y="67.25" width="1" height="1.5" /></bezel>
<bezel name="led2" element="led"><bounds x="0.5" y="57.25" width="1" height="1.5" /></bezel>
<bezel name="led3" element="led"><bounds x="0.5" y="47.25" width="1" height="1.5" /></bezel>
<bezel name="led4" element="led"><bounds x="0.5" y="37.25" width="1" height="1.5" /></bezel>
<bezel name="led5" element="led"><bounds x="0.5" y="27.25" width="1" height="1.5" /></bezel>
<bezel name="led6" element="led"><bounds x="0.5" y="17.25" width="1" height="1.5" /></bezel>
<bezel name="led7" element="led"><bounds x="0.5" y="7.25" width="1" height="1.5" /></bezel>
<bezel name="led8" element="led"><bounds x="7.25" y="84.5" width="1.5" height="1" /></bezel>
<bezel name="led9" element="led"><bounds x="17.25" y="84.5" width="1.5" height="1" /></bezel>
<bezel name="led10" element="led"><bounds x="27.25" y="84.5" width="1.5" height="1" /></bezel>
<bezel name="led11" element="led"><bounds x="37.25" y="84.5" width="1.5" height="1" /></bezel>
<bezel name="led12" element="led"><bounds x="47.25" y="84.5" width="1.5" height="1" /></bezel>
<bezel name="led13" element="led"><bounds x="57.25" y="84.5" width="1.5" height="1" /></bezel>
<bezel name="led14" element="led"><bounds x="67.25" y="84.5" width="1.5" height="1" /></bezel>
<bezel name="led15" element="led"><bounds x="77.25" y="84.5" width="1.5" height="1" /></bezel>
<!-- chessboard sensors -->
<bezel element="hl" inputtag="board:IN.7" inputmask="0x01"><bounds x="3" y="3" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.7" inputmask="0x02"><bounds x="13" y="3" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.7" inputmask="0x04"><bounds x="23" y="3" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.7" inputmask="0x08"><bounds x="33" y="3" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.7" inputmask="0x10"><bounds x="43" y="3" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.7" inputmask="0x20"><bounds x="53" y="3" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.7" inputmask="0x40"><bounds x="63" y="3" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.7" inputmask="0x80"><bounds x="73" y="3" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.6" inputmask="0x01"><bounds x="3" y="13" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.6" inputmask="0x02"><bounds x="13" y="13" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.6" inputmask="0x04"><bounds x="23" y="13" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.6" inputmask="0x08"><bounds x="33" y="13" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.6" inputmask="0x10"><bounds x="43" y="13" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.6" inputmask="0x20"><bounds x="53" y="13" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.6" inputmask="0x40"><bounds x="63" y="13" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.6" inputmask="0x80"><bounds x="73" y="13" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.5" inputmask="0x01"><bounds x="3" y="23" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.5" inputmask="0x02"><bounds x="13" y="23" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.5" inputmask="0x04"><bounds x="23" y="23" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.5" inputmask="0x08"><bounds x="33" y="23" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.5" inputmask="0x10"><bounds x="43" y="23" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.5" inputmask="0x20"><bounds x="53" y="23" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.5" inputmask="0x40"><bounds x="63" y="23" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.5" inputmask="0x80"><bounds x="73" y="23" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.4" inputmask="0x01"><bounds x="3" y="33" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.4" inputmask="0x02"><bounds x="13" y="33" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.4" inputmask="0x04"><bounds x="23" y="33" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.4" inputmask="0x08"><bounds x="33" y="33" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.4" inputmask="0x10"><bounds x="43" y="33" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.4" inputmask="0x20"><bounds x="53" y="33" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.4" inputmask="0x40"><bounds x="63" y="33" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.4" inputmask="0x80"><bounds x="73" y="33" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.3" inputmask="0x01"><bounds x="3" y="43" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.3" inputmask="0x02"><bounds x="13" y="43" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.3" inputmask="0x04"><bounds x="23" y="43" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.3" inputmask="0x08"><bounds x="33" y="43" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.3" inputmask="0x10"><bounds x="43" y="43" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.3" inputmask="0x20"><bounds x="53" y="43" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.3" inputmask="0x40"><bounds x="63" y="43" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.3" inputmask="0x80"><bounds x="73" y="43" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.2" inputmask="0x01"><bounds x="3" y="53" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.2" inputmask="0x02"><bounds x="13" y="53" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.2" inputmask="0x04"><bounds x="23" y="53" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.2" inputmask="0x08"><bounds x="33" y="53" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.2" inputmask="0x10"><bounds x="43" y="53" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.2" inputmask="0x20"><bounds x="53" y="53" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.2" inputmask="0x40"><bounds x="63" y="53" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.2" inputmask="0x80"><bounds x="73" y="53" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.1" inputmask="0x01"><bounds x="3" y="63" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.1" inputmask="0x02"><bounds x="13" y="63" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.1" inputmask="0x04"><bounds x="23" y="63" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.1" inputmask="0x08"><bounds x="33" y="63" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.1" inputmask="0x10"><bounds x="43" y="63" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.1" inputmask="0x20"><bounds x="53" y="63" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.1" inputmask="0x40"><bounds x="63" y="63" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.1" inputmask="0x80"><bounds x="73" y="63" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.0" inputmask="0x01"><bounds x="3" y="73" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.0" inputmask="0x02"><bounds x="13" y="73" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.0" inputmask="0x04"><bounds x="23" y="73" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.0" inputmask="0x08"><bounds x="33" y="73" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.0" inputmask="0x10"><bounds x="43" y="73" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.0" inputmask="0x20"><bounds x="53" y="73" width="10" height="10" /><color alpha="0.4" /></bezel>
<bezel element="hl" inputtag="board:IN.0" inputmask="0x40"><bounds x="63" y="73" width="10" height="10" /><color alpha="0.2" /></bezel>
<bezel element="hl" inputtag="board:IN.0" inputmask="0x80"><bounds x="73" y="73" width="10" height="10" /><color alpha="0.4" /></bezel>
<!-- LCD panel -->
<group ref="panel"><bounds x="3" y="89" width="79" height="13" /></group>
</view>
<view name="Display">
<group ref="panel"><bounds x="0" y="0" width="79" height="13" /></group>
</view>
</mamelayout>

View File

@ -20435,7 +20435,9 @@ mm5tk // Mephisto 5.1 ROM Turbo Kit Speed
rebel5 // Mephisto 5
@source:mephisto_montec.cpp
smondial // 1986 Mephisto Super Mondial
montec // 1987 Mephisto Monte Carlo
smondial2 // 1989 Mephisto Super Mondial II
megaiv // 1989 Mephisto Mega IV
monteciv // 1990 Mephisto Monte Carlo IV LE