diff options
author | 2020-09-11 13:22:24 +0200 | |
---|---|---|
committer | 2020-09-11 13:23:01 +0200 | |
commit | 5cfc87823f5f79b3ece0f309ed724d0d7c1b3be2 (patch) | |
tree | e865b62cc572a6702a97fcbcfdbf2f1ed67ef131 | |
parent | 1ac0edb56db4c5abb0ea9b1dc9ccdbe269724ce3 (diff) |
Machines promoted to working
----------------------------
Constellation Expert [hap, Berger]
-rw-r--r-- | src/mame/drivers/novag_cexpert.cpp | 37 | ||||
-rw-r--r-- | src/mame/layout/novag_cexpert.lay | 513 | ||||
-rw-r--r-- | src/mame/layout/novag_cforte.lay | 2 | ||||
-rw-r--r-- | src/mame/layout/novag_constq.lay | 2 | ||||
-rw-r--r-- | src/mame/layout/novag_diablo68k.lay | 2 | ||||
-rw-r--r-- | src/mame/layout/novag_scorpio68k.lay | 2 | ||||
-rw-r--r-- | src/mame/layout/novag_sexpert.lay | 2 | ||||
-rw-r--r-- | src/mame/layout/novag_sforte.lay | 2 | ||||
-rw-r--r-- | src/mame/layout/novag_supercon.lay | 14 |
9 files changed, 544 insertions, 32 deletions
diff --git a/src/mame/drivers/novag_cexpert.cpp b/src/mame/drivers/novag_cexpert.cpp index 22d0f0eaea0..610014ef150 100644 --- a/src/mame/drivers/novag_cexpert.cpp +++ b/src/mame/drivers/novag_cexpert.cpp @@ -5,7 +5,7 @@ Novag Constellation Expert (model 853) -The u3 ROM contains this message: (it's David Kittinger's company) +The u3 ROM contains the following message (it's David Kittinger's company): Copyright (c) 1985, Intelligent Heuristic Programming, Inc Hardware notes: @@ -14,8 +14,7 @@ Hardware notes: - 64+8 leds, magnet sensors chessboard - ports for optional printer and chess clock -TODO: -- based on a copy-paste of cforte driver, need to finish it and make internal artwork +I/O is again similar to supercon ******************************************************************************/ @@ -30,7 +29,7 @@ TODO: #include "speaker.h" // internal artwork -//#include "novag_cexpert.lh" // clickable +#include "novag_cexpert.lh" // clickable namespace { @@ -152,7 +151,7 @@ u8 cexpert_state::input2_r() void cexpert_state::main_map(address_map &map) { - map(0x0000, 0x0fff).ram(); //.share("nvram"); + map(0x0000, 0x0fff).ram().share("nvram"); map(0x1000, 0x1000).nopw(); // accessory? map(0x1100, 0x1100).nopw(); // " map(0x1200, 0x1200).rw(FUNC(cexpert_state::input2_r), FUNC(cexpert_state::mux_w)); @@ -169,35 +168,35 @@ void cexpert_state::main_map(address_map &map) static INPUT_PORTS_START( cexpert ) PORT_START("IN.0") PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_I) PORT_NAME("New Game") - PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_8) PORT_NAME("Player/Player / Gambit/Large / King") + PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_8) PORT_NAME("Player/Player / Gambit Book / King") PORT_START("IN.1") - PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_U) PORT_NAME("Verify/Set Up / Pro-Op") - PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_7) PORT_NAME("Random/Tour/Normal / Training Level / Queen") + PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_U) PORT_NAME("Verify / Set Up") + PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_7) PORT_NAME("Best Move/Random / Training Level / Queen") PORT_START("IN.2") - PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_Y) PORT_NAME("Change Color / Time Control / Priority") + PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_Y) PORT_NAME("Change Color") PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_6) PORT_NAME("Sound / Depth Search / Bishop") PORT_START("IN.3") - PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_T) PORT_NAME("Flip Display / Clear Board / Clear Book") + PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_T) PORT_NAME("Clear Board / Tournament Book") PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_5) PORT_NAME("Solve Mate / Infinite / Knight") PORT_START("IN.4") - PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_R) PORT_NAME("Print Moves / Print Evaluations / Print Book") + PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_R) PORT_NAME("Print Moves / Print Evaluations") PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_4) PORT_NAME("Print Board / Interface / Rook") PORT_START("IN.5") - PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_E) PORT_NAME("Trace Forward / Auto Play / No/End") + PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_E) PORT_NAME("Trace Forward / Auto Play") PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_3) PORT_NAME("Print List / Acc. Time / Pawn") PORT_START("IN.6") - PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_W) PORT_NAME("Hint / Next Best / Yes/Start") + PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_W) PORT_NAME("Hint / Next Best") PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_2) PORT_NAME("Set Level") PORT_START("IN.7") - PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_Q) PORT_NAME("Go / ->") - PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_1) PORT_NAME("Take Back / Restore / <-") + PORT_BIT(0x01, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_Q) PORT_NAME("Go") + PORT_BIT(0x02, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_CODE(KEYCODE_1) PORT_NAME("Take Back / Restore") INPUT_PORTS_END @@ -217,16 +216,16 @@ void cexpert_state::cexpert(machine_config &config) m_irq_on->set_start_delay(irq_period - attotime::from_nsec(15200)); // active for 15.2us TIMER(config, "irq_off").configure_periodic(FUNC(cexpert_state::irq_off<M6502_IRQ_LINE>), irq_period); - //NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_1); + NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_1); SENSORBOARD(config, m_board).set_type(sensorboard_device::MAGNETS); m_board->init_cb().set(m_board, FUNC(sensorboard_device::preset_chess)); m_board->set_delay(attotime::from_msec(200)); - //m_board->set_nvram_enable(true); + m_board->set_nvram_enable(true); /* video hardware */ PWM_DISPLAY(config, m_display).set_size(9, 8); - //config.set_default_layout(layout_novag_cexpert); + config.set_default_layout(layout_novag_cexpert); /* sound hardware */ SPEAKER(config, "mono").front_center(); @@ -255,4 +254,4 @@ ROM_END ******************************************************************************/ // YEAR NAME PARENT CMP MACHINE INPUT STATE INIT COMPANY, FULLNAME, FLAGS -CONS( 1985, cexpert, 0, 0, cexpert, cexpert, cexpert_state, empty_init, "Novag", "Constellation Expert", MACHINE_NOT_WORKING | MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK ) +CONS( 1985, cexpert, 0, 0, cexpert, cexpert, cexpert_state, empty_init, "Novag", "Constellation Expert", MACHINE_SUPPORTS_SAVE | MACHINE_CLICKABLE_ARTWORK ) diff --git a/src/mame/layout/novag_cexpert.lay b/src/mame/layout/novag_cexpert.lay new file mode 100644 index 00000000000..8c9f84755e3 --- /dev/null +++ b/src/mame/layout/novag_cexpert.lay @@ -0,0 +1,513 @@ +<?xml version="1.0"?> +<!-- +license:CC0 +--> +<mamelayout version="2"> + +<!-- define elements --> + + <element name="gray"><rect><color red="0.51" green="0.5" blue="0.49" /></rect></element> + + <element name="led" defstate="0"> + <disk state="1"><color red="1.0" green="0.1" blue="0.15" /></disk> + <disk state="0"><color red="0.1" green="0.01" blue="0.015" /></disk> + </element> + <element name="led2" defstate="0"> + <disk state="1"><color red="1.0" green="0.1" blue="0.15" /></disk> + <disk state="0"><color red="0.14" green="0.014" blue="0.02" /></disk> + </element> + + <element name="but" defstate="0"> + <disk state="0"><color red="0.17" green="0.15" blue="0.15" /></disk> + <disk state="1"><color red="0.34" green="0.3" blue="0.3" /></disk> + </element> + + <element name="text_1"><text string="1"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_2"><text string="2"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_3"><text string="3"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_4"><text string="4"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_5"><text string="5"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_6"><text string="6"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_7"><text string="7"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_8"><text string="8"><color red="0.9" green="0.9" blue="0.9" /></text></element> + + <element name="text_a"><text string="A"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_b"><text string="B"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_c"><text string="C"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_d"><text string="D"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_e"><text string="E"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_f"><text string="F"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_g"><text string="G"><color red="0.9" green="0.9" blue="0.9" /></text></element> + <element name="text_h"><text string="H"><color red="0.9" green="0.9" blue="0.9" /></text></element> + + <element name="text_l1ax"><text string="Player/"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l1a"><text string="Player"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l1b"><text string="Gambit Book"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l2ax"><text string="Best Move/"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l2a"><text string="Random"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l2b"><text string="Training Level"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l3a"><text string="Sound"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l3b"><text string="Depth Search"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l4a"><text string="Solve Mate"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l4b"><text string="Infinite"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l5a"><text string="Print Board"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l5b"><text string="Interface"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l6a"><text string="Print List"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l6b"><text string="Acc. Time"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l7a"><text string="Set Level"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l7b"><text string=" "><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l8a"><text string="Take Back"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_l8b"><text string="Restore"><color red="0.51" green="0.5" blue="0.49" /></text></element> + + <element name="text_m1a"><text string="New Game"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m1b"><text string=" "><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m2a"><text string="Verify"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m2b"><text string="Set Up"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m3a"><text string="Change Color"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m3b"><text string=" "><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m4a"><text string="Clear Board"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m4b"><text string="Tournament"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m4bx"><text string="Book"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m5a"><text string="Print Moves"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m5b"><text string="Print"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m5bx"><text string="Evaluations"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m6a"><text string="Trace Forward"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m6b"><text string="AutoPlay"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m7a"><text string="Hint"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m7b"><text string="Next Best"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m8a"><text string="Go"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_m8b"><text string=" "><color red="0.51" green="0.5" blue="0.49" /></text></element> + + <element name="text_rx"><text string="C o m p u t i n g"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_r1"><text string="Error"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_r2"><text string="Verify"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_r3"><text string="Set Up"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_r4"><text string="Check"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_r5"><text string="Mate"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_r6"><text string="Draw"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_r7"><text string="Black"><color red="0.51" green="0.5" blue="0.49" /></text></element> + <element name="text_r8"><text string="White"><color red="0.51" green="0.5" blue="0.49" /></text></element> + + <element name="text_p1"><image file="chess/wk.png"></image></element> + <element name="text_p2"><image file="chess/wq.png"></image></element> + <element name="text_p3"><image file="chess/wr.png"></image></element> + <element name="text_p4"><image file="chess/wb.png"></image></element> + <element name="text_p5"><image file="chess/wn.png"></image></element> + <element name="text_p6"><image file="chess/wp.png"></image></element> + + +<!-- sb board --> + + <element name="cblack"><rect><color red="0.56" green="0.33" blue="0.12" /></rect></element> + <element name="cwhite"><rect><color red="0.84" green="0.75" blue="0.50" /></rect></element> + + <element name="hlbb" defstate="0"> + <text string=" "><bounds x="0" y="0" width="1" height="1" /></text> + <disk state="1"> + <bounds x="0.12" y="0.12" width="0.76" height="0.76" /> + <color red="0" green="0" blue="0" /> + </disk> + </element> + + <element name="piece" defstate="0"> + <image file="chess/wp.png" state="1"/> + <image file="chess/wn.png" state="2"/> + <image file="chess/wb.png" state="3"/> + <image file="chess/wr.png" state="4"/> + <image file="chess/wq.png" state="5"/> + <image file="chess/wk.png" state="6"/> + + <image file="chess/bp.png" state="7"/> + <image file="chess/bn.png" state="8"/> + <image file="chess/bb.png" state="9"/> + <image file="chess/br.png" state="10"/> + <image file="chess/bq.png" state="11"/> + <image file="chess/bk.png" state="12"/> + + <!-- selected pieces --> + <image file="chess/wp.png" state="13"><color alpha="0.5" /></image> + <image file="chess/wn.png" state="14"><color alpha="0.5" /></image> + <image file="chess/wb.png" state="15"><color alpha="0.5" /></image> + <image file="chess/wr.png" state="16"><color alpha="0.5" /></image> + <image file="chess/wq.png" state="17"><color alpha="0.5" /></image> + <image file="chess/wk.png" state="18"><color alpha="0.5" /></image> + + <image file="chess/bp.png" state="19"><color alpha="0.5" /></image> + <image file="chess/bn.png" state="20"><color alpha="0.5" /></image> + <image file="chess/bb.png" state="21"><color alpha="0.5" /></image> + <image file="chess/br.png" state="22"><color alpha="0.5" /></image> + <image file="chess/bq.png" state="23"><color alpha="0.5" /></image> + <image file="chess/bk.png" state="24"><color alpha="0.5" /></image> + </element> + + <group name="sb_board"> + <bounds x="0" y="0" width="80" height="80" /> + + <!-- squares (avoid seams) --> + <element ref="cwhite"><bounds x="0" y="0" width="11" height="11" /></element> + <element ref="cblack"><bounds x="10" y="0" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="20" y="0" width="11" height="11" /></element> + <element ref="cblack"><bounds x="30" y="0" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="40" y="0" width="11" height="11" /></element> + <element ref="cblack"><bounds x="50" y="0" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="60" y="0" width="11" height="11" /></element> + <element ref="cblack"><bounds x="70" y="0" width="10" height="11" /></element> + + <element ref="cblack"><bounds x="0" y="10" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="10" y="10" width="11" height="11" /></element> + <element ref="cblack"><bounds x="20" y="10" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="30" y="10" width="11" height="11" /></element> + <element ref="cblack"><bounds x="40" y="10" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="50" y="10" width="11" height="11" /></element> + <element ref="cblack"><bounds x="60" y="10" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="70" y="10" width="10" height="11" /></element> + + <element ref="cwhite"><bounds x="0" y="20" width="11" height="11" /></element> + <element ref="cblack"><bounds x="10" y="20" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="20" y="20" width="11" height="11" /></element> + <element ref="cblack"><bounds x="30" y="20" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="40" y="20" width="11" height="11" /></element> + <element ref="cblack"><bounds x="50" y="20" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="60" y="20" width="11" height="11" /></element> + <element ref="cblack"><bounds x="70" y="20" width="10" height="11" /></element> + + <element ref="cblack"><bounds x="0" y="30" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="10" y="30" width="11" height="11" /></element> + <element ref="cblack"><bounds x="20" y="30" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="30" y="30" width="11" height="11" /></element> + <element ref="cblack"><bounds x="40" y="30" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="50" y="30" width="11" height="11" /></element> + <element ref="cblack"><bounds x="60" y="30" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="70" y="30" width="10" height="11" /></element> + + <element ref="cwhite"><bounds x="0" y="40" width="11" height="11" /></element> + <element ref="cblack"><bounds x="10" y="40" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="20" y="40" width="11" height="11" /></element> + <element ref="cblack"><bounds x="30" y="40" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="40" y="40" width="11" height="11" /></element> + <element ref="cblack"><bounds x="50" y="40" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="60" y="40" width="11" height="11" /></element> + <element ref="cblack"><bounds x="70" y="40" width="10" height="11" /></element> + + <element ref="cblack"><bounds x="0" y="50" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="10" y="50" width="11" height="11" /></element> + <element ref="cblack"><bounds x="20" y="50" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="30" y="50" width="11" height="11" /></element> + <element ref="cblack"><bounds x="40" y="50" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="50" y="50" width="11" height="11" /></element> + <element ref="cblack"><bounds x="60" y="50" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="70" y="50" width="10" height="11" /></element> + + <element ref="cwhite"><bounds x="0" y="60" width="11" height="11" /></element> + <element ref="cblack"><bounds x="10" y="60" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="20" y="60" width="11" height="11" /></element> + <element ref="cblack"><bounds x="30" y="60" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="40" y="60" width="11" height="11" /></element> + <element ref="cblack"><bounds x="50" y="60" width="11" height="11" /></element> + <element ref="cwhite"><bounds x="60" y="60" width="11" height="11" /></element> + <element ref="cblack"><bounds x="70" y="60" width="10" height="11" /></element> + + <element ref="cblack"><bounds x="0" y="70" width="11" height="10" /></element> + <element ref="cwhite"><bounds x="10" y="70" width="11" height="10" /></element> + <element ref="cblack"><bounds x="20" y="70" width="11" height="10" /></element> + <element ref="cwhite"><bounds x="30" y="70" width="11" height="10" /></element> + <element ref="cblack"><bounds x="40" y="70" width="11" height="10" /></element> + <element ref="cwhite"><bounds x="50" y="70" width="11" height="10" /></element> + <element ref="cblack"><bounds x="60" y="70" width="11" height="10" /></element> + <element ref="cwhite"><bounds x="70" y="70" width="10" height="10" /></element> + + <!-- leds --> + <repeat count="8"> + <param name="y" start="8.3" increment="10" /> + <param name="i1" start="0" increment="1" /> + + <repeat count="8"> + <param name="x" start="0.2" increment="10" /> + <param name="i2" start="0" increment="1" /> + <element name="~i2~.~i1~" ref="led"><bounds x="~x~" y="~y~" width="1.5" height="1.5" /></element> + </repeat> + </repeat> + + <!-- sensors, pieces --> + <repeat count="8"> + <param name="y" start="0" increment="10" /> + <param name="i" start="8" increment="-1" /> + + <element ref="hlbb" inputtag="board:RANK.~i~" inputmask="0x01"><bounds x="0" y="~y~" width="10" height="10" /><color alpha="0.04" /></element> + <element ref="hlbb" inputtag="board:RANK.~i~" inputmask="0x02"><bounds x="10" y="~y~" width="10" height="10" /><color alpha="0.04" /></element> + <element ref="hlbb" inputtag="board:RANK.~i~" inputmask="0x04"><bounds x="20" y="~y~" width="10" height="10" /><color alpha="0.04" /></element> + <element ref="hlbb" inputtag="board:RANK.~i~" inputmask="0x08"><bounds x="30" y="~y~" width="10" height="10" /><color alpha="0.04" /></element> + <element ref="hlbb" inputtag="board:RANK.~i~" inputmask="0x10"><bounds x="40" y="~y~" width="10" height="10" /><color alpha="0.04" /></element> + <element ref="hlbb" inputtag="board:RANK.~i~" inputmask="0x20"><bounds x="50" y="~y~" width="10" height="10" /><color alpha="0.04" /></element> + <element ref="hlbb" inputtag="board:RANK.~i~" inputmask="0x40"><bounds x="60" y="~y~" width="10" height="10" /><color alpha="0.04" /></element> + <element ref="hlbb" inputtag="board:RANK.~i~" inputmask="0x80"><bounds x="70" y="~y~" width="10" height="10" /><color alpha="0.04" /></element> + + <element name="piece_a~i~" ref="piece"><bounds x="0" y="~y~" width="10" height="10" /></element> + <element name="piece_b~i~" ref="piece"><bounds x="10" y="~y~" width="10" height="10" /></element> + <element name="piece_c~i~" ref="piece"><bounds x="20" y="~y~" width="10" height="10" /></element> + <element name="piece_d~i~" ref="piece"><bounds x="30" y="~y~" width="10" height="10" /></element> + <element name="piece_e~i~" ref="piece"><bounds x="40" y="~y~" width="10" height="10" /></element> + <element name="piece_f~i~" ref="piece"><bounds x="50" y="~y~" width="10" height="10" /></element> + <element name="piece_g~i~" ref="piece"><bounds x="60" y="~y~" width="10" height="10" /></element> + <element name="piece_h~i~" ref="piece"><bounds x="70" y="~y~" width="10" height="10" /></element> + </repeat> + </group> + + +<!-- sb ui --> + + <element name="hlub" defstate="0"> + <rect state="1"><color red="0" green="0" blue="0" /></rect> + </element> + + <element name="text_uit1"><text string="S.BOARD"><color red="0.81" green="0.8" blue="0.79" /></text></element> + <element name="text_uit2"><text string="INTERFACE"><color red="0.81" green="0.8" blue="0.79" /></text></element> + <element name="text_uib1"><text string="BOARD:"><color red="0.81" green="0.8" blue="0.79" /></text></element> + <element name="text_uib2"> + <rect><color red="0.84" green="0.75" blue="0.50" /></rect> + <text string="RESET"><color red="0.01" green="0.01" blue="0.01" /></text> + </element> + <element name="text_uib3"> + <rect><color red="0.84" green="0.75" blue="0.50" /></rect> + <text string="CLEAR"><color red="0.01" green="0.01" blue="0.01" /></text> + </element> + <element name="text_uis1"><text string="SPAWN:"><color red="0.81" green="0.8" blue="0.79" /></text></element> + <element name="text_uih1"><text string="HAND:"><color red="0.81" green="0.8" blue="0.79" /></text></element> + <element name="text_uih2"> + <rect><color red="0.84" green="0.75" blue="0.50" /></rect> + <text string="REMOVE"><color red="0.01" green="0.01" blue="0.01" /></text> + </element> + <element name="text_uiu1"><text string="UNDO:"><color red="0.81" green="0.8" blue="0.79" /></text></element> + <element name="text_uiu2a"> + <rect><color red="0.84" green="0.75" blue="0.50" /></rect> + <text string=" <<"><color red="0.01" green="0.01" blue="0.01" /></text> + </element> + <element name="text_uiu2b"> + <rect><color red="0.84" green="0.75" blue="0.50" /></rect> + <text string=" < "><color red="0.01" green="0.01" blue="0.01" /></text> + </element> + <element name="text_uiu2c"> + <rect><color red="0.84" green="0.75" blue="0.50" /></rect> + <text string=" >"><color red="0.01" green="0.01" blue="0.01" /></text> + </element> + <element name="text_uiu2d"> + <rect><color red="0.84" green="0.75" blue="0.50" /></rect> + <text string=" >>"><color red="0.01" green="0.01" blue="0.01" /></text> + </element> + <element name="text_uiu3a" defstate="0"> + <simplecounter maxstate="999" digits="1" align="2"> + <color red="0.81" green="0.8" blue="0.79" /> + </simplecounter> + </element> + <element name="text_uiu3b"><text string="/"><color red="0.81" green="0.8" blue="0.79" /></text></element> + <element name="text_uiu3c" defstate="0"> + <simplecounter maxstate="999" digits="1" align="1"> + <color red="0.81" green="0.8" blue="0.79" /> + </simplecounter> + </element> + + <group name="sb_ui"> + <bounds x="0" y="0" width="10" height="80" /> + <element ref="cblack"><bounds x="0" y="0" width="10" height="1" /></element> + <element ref="cblack"><bounds x="0" y="7" width="10" height="1" /></element> + <element ref="cblack"><bounds x="0" y="79" width="10" height="1" /></element> + <element ref="text_uit1"><bounds x="0" y="2" width="10" height="2" /></element> + <element ref="text_uit2"><bounds x="0" y="4" width="10" height="2" /></element> + + <!-- board --> + <element ref="text_uib1"><bounds x="0" y="9" width="10" height="2" /></element> + <element ref="cwhite"><bounds x="1" y="11.5" width="8" height="2.5" /></element> + <element ref="cwhite"><bounds x="1" y="15" width="8" height="2.5" /></element> + + <element ref="text_uib2"><bounds x="1.5" y="11.75" width="7" height="2" /></element> + <element ref="text_uib3"><bounds x="1.5" y="15.25" width="7" height="2" /></element> + + <element ref="hlub" inputtag="board:UI" inputmask="0x200"><bounds x="1" y="11.5" width="8" height="2.5" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:UI" inputmask="0x100"><bounds x="1" y="15" width="8" height="2.5" /><color alpha="0.25" /></element> + + <!-- spawn --> + <element ref="text_uis1"><bounds x="0" y="20.5" width="10" height="2" /></element> + <element ref="cwhite"><bounds x="1" y="23" width="8" height="12" /></element> + <element ref="cwhite"><bounds x="1" y="36" width="8" height="12" /></element> + + <element name="piece_ui1" ref="piece"><bounds x="1" y="23" width="4" height="4" /></element> + <element name="piece_ui2" ref="piece"><bounds x="1" y="27" width="4" height="4" /></element> + <element name="piece_ui3" ref="piece"><bounds x="1" y="31" width="4" height="4" /></element> + <element name="piece_ui4" ref="piece"><bounds x="5" y="23" width="4" height="4" /></element> + <element name="piece_ui5" ref="piece"><bounds x="5" y="27" width="4" height="4" /></element> + <element name="piece_ui6" ref="piece"><bounds x="5" y="31" width="4" height="4" /></element> + <element name="piece_ui7" ref="piece"><bounds x="1" y="36" width="4" height="4" /></element> + <element name="piece_ui8" ref="piece"><bounds x="1" y="40" width="4" height="4" /></element> + <element name="piece_ui9" ref="piece"><bounds x="1" y="44" width="4" height="4" /></element> + <element name="piece_ui10" ref="piece"><bounds x="5" y="36" width="4" height="4" /></element> + <element name="piece_ui11" ref="piece"><bounds x="5" y="40" width="4" height="4" /></element> + <element name="piece_ui12" ref="piece"><bounds x="5" y="44" width="4" height="4" /></element> + + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0001"><bounds x="1" y="23" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0002"><bounds x="1" y="27" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0004"><bounds x="1" y="31" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0008"><bounds x="5" y="23" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0010"><bounds x="5" y="27" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0020"><bounds x="5" y="31" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0040"><bounds x="1" y="36" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0080"><bounds x="1" y="40" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0100"><bounds x="1" y="44" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0200"><bounds x="5" y="36" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0400"><bounds x="5" y="40" width="4" height="4" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:SPAWN" inputmask="0x0800"><bounds x="5" y="44" width="4" height="4" /><color alpha="0.25" /></element> + + <!-- hand --> + <element ref="text_uih1"><bounds x="0" y="51" width="10" height="2" /></element> + <element ref="cblack"><bounds x="1" y="53.5" width="8" height="6" /></element> + <element name="piece_ui0" ref="piece"><bounds x="2" y="53.5" width="6" height="6" /></element> + + <element ref="cwhite"><bounds x="1" y="60.5" width="8" height="2.5" /></element> + <element ref="text_uih2"><bounds x="1.5" y="60.75" width="7" height="2" /></element> + <element ref="hlub" inputtag="board:UI" inputmask="0x08"><bounds x="1" y="60.5" width="8" height="2.5" /><color alpha="0.25" /></element> + + <!-- undo --> + <element ref="text_uiu1"><bounds x="0" y="66" width="10" height="2" /></element> + <element ref="cwhite"><bounds x="1" y="68.5" width="1.7" height="6" /></element> + <element ref="cwhite"><bounds x="3.1" y="68.5" width="1.7" height="6" /></element> + <element ref="cwhite"><bounds x="5.2" y="68.5" width="1.7" height="6" /></element> + <element ref="cwhite"><bounds x="7.3" y="68.5" width="1.7" height="6" /></element> + <element ref="text_uiu2a"><bounds x="1" y="69.5" width="1.7" height="4" /></element> + <element ref="text_uiu2b"><bounds x="3.1" y="69.5" width="1.7" height="4" /></element> + <element ref="text_uiu2c"><bounds x="5.2" y="69.5" width="1.7" height="4" /></element> + <element ref="text_uiu2d"><bounds x="7.3" y="69.5" width="1.7" height="4" /></element> + + <element ref="hlub" inputtag="board:UI" inputmask="0x10"><bounds x="1" y="68.5" width="1.7" height="6" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:UI" inputmask="0x20"><bounds x="3.1" y="68.5" width="1.7" height="6" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:UI" inputmask="0x40"><bounds x="5.2" y="68.5" width="1.7" height="6" /><color alpha="0.25" /></element> + <element ref="hlub" inputtag="board:UI" inputmask="0x80"><bounds x="7.3" y="68.5" width="1.7" height="6" /><color alpha="0.25" /></element> + + <element name="count_ui0" ref="text_uiu3a"><bounds x="0" y="75" width="4" height="2" /></element> + <element name="count_ui1" ref="text_uiu3c"><bounds x="6" y="75" width="4" height="2" /></element> + <element ref="text_uiu3b"><bounds x="4" y="75" width="2" height="2" /></element> + </group> + + +<!-- build screen --> + + <view name="Internal Layout"> + <bounds left="-2.5" right="119" top="-1" bottom="88" /> + + <group ref="sb_board"><bounds x="13" y="3" width="80" height="80" /></group> + <group ref="sb_ui"><bounds x="-1" y="3" width="10" height="80" /></group> + + <!-- chessboard coords --> + + <element ref="text_8"><bounds x="10.2" y="7" width="2" height="2" /></element> + <element ref="text_7"><bounds x="10.2" y="17" width="2" height="2" /></element> + <element ref="text_6"><bounds x="10.2" y="27" width="2" height="2" /></element> + <element ref="text_5"><bounds x="10.2" y="37" width="2" height="2" /></element> + <element ref="text_4"><bounds x="10.2" y="47" width="2" height="2" /></element> + <element ref="text_3"><bounds x="10.2" y="57" width="2" height="2" /></element> + <element ref="text_2"><bounds x="10.2" y="67" width="2" height="2" /></element> + <element ref="text_1"><bounds x="10.2" y="77" width="2" height="2" /></element> + + <element ref="text_a"><bounds x="17" y="84" width="2" height="2" /></element> + <element ref="text_b"><bounds x="27" y="84" width="2" height="2" /></element> + <element ref="text_c"><bounds x="37" y="84" width="2" height="2" /></element> + <element ref="text_d"><bounds x="47" y="84" width="2" height="2" /></element> + <element ref="text_e"><bounds x="57" y="84" width="2" height="2" /></element> + <element ref="text_f"><bounds x="67" y="84" width="2" height="2" /></element> + <element ref="text_g"><bounds x="77" y="84" width="2" height="2" /></element> + <element ref="text_h"><bounds x="87" y="84" width="2" height="2" /></element> + + <!-- right side buttons --> + + <element ref="text_p1"><bounds x="94.6" y="24.10" width="2.2" height="2.2" /></element> + <element ref="text_p2"><bounds x="94.6" y="31.81" width="2.2" height="2.2" /></element> + <element ref="text_p4"><bounds x="94.6" y="39.53" width="2.2" height="2.2" /></element> + <element ref="text_p5"><bounds x="94.6" y="47.24" width="2.2" height="2.2" /></element> + <element ref="text_p3"><bounds x="94.6" y="54.96" width="2.2" height="2.2" /></element> + <element ref="text_p6"><bounds x="94.6" y="62.67" width="2.2" height="2.2" /></element> + + <element ref="text_p1"><bounds x="113.15" y="26.10" width="2.2" height="2.2" /></element> + <element ref="text_p2"><bounds x="113.15" y="33.81" width="2.2" height="2.2" /></element> + <element ref="text_p3"><bounds x="113.15" y="41.53" width="2.2" height="2.2" /></element> + <element ref="text_p4"><bounds x="113.15" y="49.24" width="2.2" height="2.2" /></element> + <element ref="text_p5"><bounds x="113.15" y="56.96" width="2.2" height="2.2" /></element> + <element ref="text_p6"><bounds x="113.15" y="64.67" width="2.2" height="2.2" /></element> + + <element ref="gray" blend="multiply"><bounds x="94.5" y="20" width="22" height="60" /></element> + + <element ref="but" inputtag="IN.0" inputmask="0x02"><bounds x="97.38" y="24.00" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.1" inputmask="0x02"><bounds x="97.38" y="31.71" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.2" inputmask="0x02"><bounds x="97.38" y="39.43" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.3" inputmask="0x02"><bounds x="97.38" y="47.14" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.4" inputmask="0x02"><bounds x="97.38" y="54.86" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.5" inputmask="0x02"><bounds x="97.38" y="62.57" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.6" inputmask="0x02"><bounds x="97.38" y="70.29" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.7" inputmask="0x02"><bounds x="97.38" y="78.00" width="2.5" height="2.5" /></element> + + <element ref="but" inputtag="IN.0" inputmask="0x01"><bounds x="107.00" y="24.00" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.1" inputmask="0x01"><bounds x="107.00" y="31.71" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.2" inputmask="0x01"><bounds x="107.00" y="39.43" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.3" inputmask="0x01"><bounds x="107.00" y="47.14" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.4" inputmask="0x01"><bounds x="107.00" y="54.86" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.5" inputmask="0x01"><bounds x="107.00" y="62.57" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.6" inputmask="0x01"><bounds x="107.00" y="70.29" width="2.5" height="2.5" /></element> + <element ref="but" inputtag="IN.7" inputmask="0x01"><bounds x="107.00" y="78.00" width="2.5" height="2.5" /></element> + + <element ref="text_l1ax"><bounds x="91.63" y="20.95" width="14" height="1.4" /></element> + <element ref="text_l1a"><bounds x="91.63" y="22.35" width="14" height="1.4" /></element> + <element ref="text_l1b"><bounds x="91.63" y="26.70" width="14" height="1.4" /></element> + <element ref="text_l2ax"><bounds x="91.63" y="28.66" width="14" height="1.4" /></element> + <element ref="text_l2a"><bounds x="91.63" y="30.06" width="14" height="1.4" /></element> + <element ref="text_l2b"><bounds x="91.63" y="34.41" width="14" height="1.4" /></element> + <element ref="text_l3a"><bounds x="91.63" y="37.78" width="14" height="1.4" /></element> + <element ref="text_l3b"><bounds x="91.63" y="42.13" width="14" height="1.4" /></element> + <element ref="text_l4a"><bounds x="91.63" y="45.49" width="14" height="1.4" /></element> + <element ref="text_l4b"><bounds x="91.63" y="49.84" width="14" height="1.4" /></element> + <element ref="text_l5a"><bounds x="91.63" y="53.21" width="14" height="1.4" /></element> + <element ref="text_l5b"><bounds x="91.63" y="57.56" width="14" height="1.4" /></element> + <element ref="text_l6a"><bounds x="91.63" y="60.92" width="14" height="1.4" /></element> + <element ref="text_l6b"><bounds x="91.63" y="65.27" width="14" height="1.4" /></element> + <element ref="text_l7a"><bounds x="91.63" y="68.64" width="14" height="1.4" /></element> + <element ref="text_l7b"><bounds x="91.63" y="72.99" width="14" height="1.4" /></element> + <element ref="text_l8a"><bounds x="91.63" y="76.35" width="14" height="1.4" /></element> + <element ref="text_l8b"><bounds x="91.63" y="80.70" width="14" height="1.4" /></element> + + <element ref="text_m1a"><bounds x="101.25" y="22.35" width="14" height="1.4" /></element> + <element ref="text_m1b"><bounds x="101.25" y="26.70" width="14" height="1.4" /></element> + <element ref="text_m2a"><bounds x="101.25" y="30.06" width="14" height="1.4" /></element> + <element ref="text_m2b"><bounds x="101.25" y="34.41" width="14" height="1.4" /></element> + <element ref="text_m3a"><bounds x="101.25" y="37.78" width="14" height="1.4" /></element> + <element ref="text_m3b"><bounds x="101.25" y="42.13" width="14" height="1.4" /></element> + <element ref="text_m4a"><bounds x="101.25" y="45.49" width="14" height="1.4" /></element> + <element ref="text_m4b"><bounds x="101.25" y="49.84" width="14" height="1.4" /></element> + <element ref="text_m4bx"><bounds x="101.25" y="51.24" width="14" height="1.4" /></element> + <element ref="text_m5a"><bounds x="101.25" y="53.21" width="14" height="1.4" /></element> + <element ref="text_m5b"><bounds x="101.25" y="57.56" width="14" height="1.4" /></element> + <element ref="text_m5bx"><bounds x="101.25" y="58.96" width="14" height="1.4" /></element> + <element ref="text_m6a"><bounds x="101.25" y="60.92" width="14" height="1.4" /></element> + <element ref="text_m6b"><bounds x="101.25" y="65.27" width="14" height="1.4" /></element> + <element ref="text_m7a"><bounds x="101.25" y="68.64" width="14" height="1.4" /></element> + <element ref="text_m7b"><bounds x="101.25" y="72.99" width="14" height="1.4" /></element> + <element ref="text_m8a"><bounds x="101.25" y="76.35" width="14" height="1.4" /></element> + <element ref="text_m8b"><bounds x="101.25" y="80.70" width="14" height="1.4" /></element> + + <element ref="text_r1"><bounds x="110.5" y="22.85" width="7.5" height="1.4" /></element> + <element ref="text_r2"><bounds x="110.5" y="30.56" width="7.5" height="1.4" /></element> + <element ref="text_r3"><bounds x="110.5" y="38.28" width="7.5" height="1.4" /></element> + <element ref="text_r4"><bounds x="110.5" y="45.99" width="7.5" height="1.4" /></element> + <element ref="text_r5"><bounds x="110.5" y="53.71" width="7.5" height="1.4" /></element> + <element ref="text_r6"><bounds x="110.5" y="61.42" width="7.5" height="1.4" /></element> + <element ref="text_r7"><bounds x="110.5" y="69.04" width="7.5" height="1.4" /></element> + <element ref="text_r8"><bounds x="110.5" y="76.85" width="7.5" height="1.4" /></element> + + <element ref="text_rx"><bounds x="116.3" y="24.2" width="1.4" height="10" /><orientation rotate="90" /></element> + + <element name="8.0" ref="led2"><bounds x="113.5" y="24.50" width="1.5" height="1.5" /></element> + <element name="8.1" ref="led2"><bounds x="113.5" y="32.21" width="1.5" height="1.5" /></element> + <element name="8.2" ref="led2"><bounds x="113.5" y="39.93" width="1.5" height="1.5" /></element> + <element name="8.3" ref="led2"><bounds x="113.5" y="47.64" width="1.5" height="1.5" /></element> + <element name="8.4" ref="led2"><bounds x="113.5" y="55.36" width="1.5" height="1.5" /></element> + <element name="8.5" ref="led2"><bounds x="113.5" y="63.07" width="1.5" height="1.5" /></element> + <element name="8.6" ref="led2"><bounds x="113.5" y="70.79" width="1.5" height="1.5" /></element> + <element name="8.7" ref="led2"><bounds x="113.5" y="78.50" width="1.5" height="1.5" /></element> + + </view> +</mamelayout> diff --git a/src/mame/layout/novag_cforte.lay b/src/mame/layout/novag_cforte.lay index 030aa238223..8c3b0252054 100644 --- a/src/mame/layout/novag_cforte.lay +++ b/src/mame/layout/novag_cforte.lay @@ -432,7 +432,7 @@ license:CC0 <!-- build screen --> <view name="Internal Layout"> - <bounds left="-12" right="111" top="-1" bottom="88" /> + <bounds left="-12.5" right="111" top="-1" bottom="88" /> <group ref="sb_board"><bounds x="4" y="3" width="80" height="80" /></group> <group ref="sb_ui"><bounds x="-11" y="3" width="10" height="80" /></group> diff --git a/src/mame/layout/novag_constq.lay b/src/mame/layout/novag_constq.lay index 33cc6604fde..d61872e14e2 100644 --- a/src/mame/layout/novag_constq.lay +++ b/src/mame/layout/novag_constq.lay @@ -381,7 +381,7 @@ license:CC0 <!-- build screen --> <view name="Internal Layout"> - <bounds left="-12" right="109.5" top="-1" bottom="88" /> + <bounds left="-12.5" right="109.5" top="-1" bottom="88" /> <group ref="sb_board"><bounds x="4" y="3" width="80" height="80" /></group> <group ref="sb_ui"><bounds x="-11" y="3" width="10" height="80" /></group> diff --git a/src/mame/layout/novag_diablo68k.lay b/src/mame/layout/novag_diablo68k.lay index a0453358106..43691c8eb82 100644 --- a/src/mame/layout/novag_diablo68k.lay +++ b/src/mame/layout/novag_diablo68k.lay @@ -397,7 +397,7 @@ license:CC0 <!-- build screen --> <view name="Internal Layout"> - <bounds left="-11" right="114" top="-1" bottom="88" /> + <bounds left="-11.5" right="114" top="-1" bottom="88" /> <group ref="sb_board"><bounds x="4" y="3" width="80" height="80" /></group> <group ref="sb_ui"><bounds x="-10" y="3" width="10" height="80" /></group> diff --git a/src/mame/layout/novag_scorpio68k.lay b/src/mame/layout/novag_scorpio68k.lay index 5cfb175d910..8217a397d4f 100644 --- a/src/mame/layout/novag_scorpio68k.lay +++ b/src/mame/layout/novag_scorpio68k.lay @@ -387,7 +387,7 @@ license:CC0 <!-- build screen --> <view name="Internal Layout"> - <bounds left="-12" right="114" top="-1" bottom="98" /> + <bounds left="-12.5" right="114" top="-1" bottom="98" /> <group ref="sb_board"><bounds x="4" y="3" width="80" height="80" /></group> <group ref="sb_ui"><bounds x="-11" y="3" width="10" height="80" /></group> diff --git a/src/mame/layout/novag_sexpert.lay b/src/mame/layout/novag_sexpert.lay index a0453358106..43691c8eb82 100644 --- a/src/mame/layout/novag_sexpert.lay +++ b/src/mame/layout/novag_sexpert.lay @@ -397,7 +397,7 @@ license:CC0 <!-- build screen --> <view name="Internal Layout"> - <bounds left="-11" right="114" top="-1" bottom="88" /> + <bounds left="-11.5" right="114" top="-1" bottom="88" /> <group ref="sb_board"><bounds x="4" y="3" width="80" height="80" /></group> <group ref="sb_ui"><bounds x="-10" y="3" width="10" height="80" /></group> diff --git a/src/mame/layout/novag_sforte.lay b/src/mame/layout/novag_sforte.lay index 4b01c8c22bd..348c9849114 100644 --- a/src/mame/layout/novag_sforte.lay +++ b/src/mame/layout/novag_sforte.lay @@ -391,7 +391,7 @@ license:CC0 <!-- build screen --> <view name="Internal Layout"> - <bounds left="-12" right="114" top="-1" bottom="88" /> + <bounds left="-12.5" right="114" top="-1" bottom="88" /> <group ref="sb_board"><bounds x="4" y="3" width="80" height="80" /></group> <group ref="sb_ui"><bounds x="-11" y="3" width="10" height="80" /></group> diff --git a/src/mame/layout/novag_supercon.lay b/src/mame/layout/novag_supercon.lay index f314e53e628..3d45f8e75c4 100644 --- a/src/mame/layout/novag_supercon.lay +++ b/src/mame/layout/novag_supercon.lay @@ -423,7 +423,7 @@ license:CC0 <!-- default view --> <group name="default"> - <bounds left="-19.5" right="116" top="-0.5" bottom="88.5" /> + <bounds left="-19" right="116" top="-0.5" bottom="88.5" /> <element ref="cblack"><bounds x="2.5" y="2.5" width="80.5" height="81" /></element> <group ref="sb_board"><bounds x="3" y="3" width="80" height="80" /></group> @@ -596,7 +596,7 @@ license:CC0 <!-- programmable openings keypad overlay sheet --> <group name="overlay"> - <bounds left="-19.5" right="116" top="-0.5" bottom="88.5" /> + <bounds left="-19" right="116" top="-0.5" bottom="88.5" /> <!-- block buttons --> <element ref="hlb" inputtag="IN.1" inputmask="0x00" inputraw="1"><bounds x="88" y="16" width="6" height="4" /></element> @@ -609,7 +609,7 @@ license:CC0 <element ref="hlb" inputtag="IN.5" inputmask="0x00" inputraw="1"><bounds x="97" y="56" width="6" height="4" /></element> <element ref="hlb" inputtag="IN.6" inputmask="0x00" inputraw="1"><bounds x="97" y="66" width="6" height="4" /></element> - <group ref="default"><bounds left="-19.5" right="116" top="-0.5" bottom="88.5" /></group> + <group ref="default"><bounds left="-19" right="116" top="-0.5" bottom="88.5" /></group> <!-- erase --> <element ref="blackb"><bounds x="86" y="0" width="1" height="88" /></element> @@ -641,13 +641,13 @@ license:CC0 <!-- build screen --> <view name="Internal Layout (Default)"> - <bounds left="-19.5" right="116" top="-0.5" bottom="88.5" /> - <group ref="default"><bounds left="-19.5" right="116" top="-0.5" bottom="88.5" /></group> + <bounds left="-19" right="116" top="-0.5" bottom="88.5" /> + <group ref="default"><bounds left="-19" right="116" top="-0.5" bottom="88.5" /></group> </view> <view name="Internal Layout (P.O. Overlay)"> - <bounds left="-19.5" right="116" top="-0.5" bottom="88.5" /> - <group ref="overlay"><bounds left="-19.5" right="116" top="-0.5" bottom="88.5" /></group> + <bounds left="-19" right="116" top="-0.5" bottom="88.5" /> + <group ref="overlay"><bounds left="-19" right="116" top="-0.5" bottom="88.5" /></group> </view> </mamelayout> |