mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
New Working machine added
-------------- Conic Electronic Football II [hap, Sean Riddle]
This commit is contained in:
parent
f971143307
commit
0ee0726dc4
@ -161,7 +161,7 @@ INPUT_PORTS_END
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
// output PLA is not dumped
|
||||
// output PLA is not decapped
|
||||
static const UINT16 elecbowl_output_pla[0x20] =
|
||||
{
|
||||
lA+lB+lC+lD+lE+lF, // 0
|
||||
|
@ -22,7 +22,7 @@
|
||||
@MP1030 TMS1100 1980, APF Mathemagician
|
||||
@MP1133 TMS1470 1979, Kosmos Astro
|
||||
@MP1180 TMS1100 1980, Tomy Power House Pinball
|
||||
*MP1181 TMS1100 1979, Conic Football 2
|
||||
@MP1181 TMS1100 1979, Conic Football 2
|
||||
@MP1204 TMS1100 1980, Entex Baseball 3 (6007)
|
||||
@MP1211 TMS1100 1980, Entex Space Invader
|
||||
@MP1218 TMS1100 1980, Entex Basketball 2 (6010)
|
||||
@ -114,6 +114,7 @@
|
||||
#include "astro.lh"
|
||||
#include "bankshot.lh"
|
||||
#include "bigtrak.lh"
|
||||
#include "cnfball2.lh"
|
||||
#include "cnsector.lh"
|
||||
#include "comp4.lh"
|
||||
#include "cqback.lh"
|
||||
@ -475,7 +476,7 @@ static INPUT_PORTS_START( mathmagi )
|
||||
INPUT_PORTS_END
|
||||
|
||||
|
||||
// output PLA is not dumped
|
||||
// output PLA is not decapped
|
||||
static const UINT16 mathmagi_output_pla[0x20] =
|
||||
{
|
||||
lA+lB+lC+lD+lE+lF, // 0
|
||||
@ -774,7 +775,7 @@ static INPUT_PORTS_START( zodiac )
|
||||
INPUT_PORTS_END
|
||||
|
||||
|
||||
// output PLA is not dumped
|
||||
// output PLA is not decapped
|
||||
static const UINT16 zodiac_output_pla[0x20] =
|
||||
{
|
||||
0x80, // empty/led 1/7
|
||||
@ -1354,6 +1355,130 @@ MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
||||
/***************************************************************************
|
||||
|
||||
Conic Electronic Football II
|
||||
* TMS1100 MP1181 (no decap)
|
||||
* 9-digit LED grid, 1-bit sound
|
||||
|
||||
This is a clone of Coleco's Quarterback, similar at hardware-level too.
|
||||
It was also sold by Tandy under the same title.
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
class cnfball2_state : public hh_tms1k_state
|
||||
{
|
||||
public:
|
||||
cnfball2_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||
: hh_tms1k_state(mconfig, type, tag)
|
||||
{ }
|
||||
|
||||
void prepare_display();
|
||||
DECLARE_WRITE16_MEMBER(write_r);
|
||||
DECLARE_WRITE16_MEMBER(write_o);
|
||||
DECLARE_READ8_MEMBER(read_k);
|
||||
};
|
||||
|
||||
// handlers
|
||||
|
||||
void cnfball2_state::prepare_display()
|
||||
{
|
||||
// R1 selects between segments B/C or A'/D'
|
||||
UINT16 seg = m_o;
|
||||
if (~m_r & 2)
|
||||
seg = (m_o << 7 & 0x300) | (m_o & 0xf9);
|
||||
|
||||
set_display_segmask(0x1ff, 0xff);
|
||||
display_matrix(11, 9, seg, m_r >> 1 & 0x1ff);
|
||||
}
|
||||
|
||||
WRITE16_MEMBER(cnfball2_state::write_r)
|
||||
{
|
||||
// R0: speaker out
|
||||
m_speaker->level_w(data & 1);
|
||||
|
||||
// R8-R10: input mux
|
||||
m_inp_mux = data >> 8 & 7;
|
||||
|
||||
// R1-R10: select digit/segment
|
||||
m_r = data;
|
||||
prepare_display();
|
||||
}
|
||||
|
||||
WRITE16_MEMBER(cnfball2_state::write_o)
|
||||
{
|
||||
// O0-O7: digit segments
|
||||
m_o = data;
|
||||
prepare_display();
|
||||
}
|
||||
|
||||
READ8_MEMBER(cnfball2_state::read_k)
|
||||
{
|
||||
// K: multiplexed inputs
|
||||
return read_inputs(3);
|
||||
}
|
||||
|
||||
|
||||
// config
|
||||
|
||||
static INPUT_PORTS_START( cnfball2 )
|
||||
PORT_START("IN.0") // R8
|
||||
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_UNUSED )
|
||||
PORT_CONFNAME( 0x02, 0x00, "Factory Test" )
|
||||
PORT_CONFSETTING( 0x00, DEF_STR( Off ) )
|
||||
PORT_CONFSETTING( 0x02, DEF_STR( On ) )
|
||||
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_SELECT ) PORT_TOGGLE PORT_NAME("Play Selector") // pass/run
|
||||
PORT_CONFNAME( 0x08, 0x00, "Skill Level" )
|
||||
PORT_CONFSETTING( 0x00, "1" ) // college
|
||||
PORT_CONFSETTING( 0x08, "2" ) // professional
|
||||
|
||||
PORT_START("IN.1") // R9
|
||||
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_16WAY
|
||||
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_16WAY
|
||||
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_16WAY
|
||||
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_16WAY
|
||||
|
||||
PORT_START("IN.2") // R10
|
||||
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Kick/Pass")
|
||||
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_START2 ) PORT_NAME("Score")
|
||||
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_START1 ) PORT_NAME("Status")
|
||||
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNUSED )
|
||||
INPUT_PORTS_END
|
||||
|
||||
|
||||
// output PLA is not decapped
|
||||
static const UINT16 cnfball2_output_pla[0x20] =
|
||||
{
|
||||
// first half was dumped electronically
|
||||
0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f, 0x40, 0x01, 0x08, 0x02, 0x04, 0x00,
|
||||
|
||||
// rest is unknown
|
||||
0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0
|
||||
};
|
||||
|
||||
static MACHINE_CONFIG_START( cnfball2, cnfball2_state )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", TMS1100, 375000) // approximation - RC osc. R=47K, C=47pf
|
||||
MCFG_TMS1XXX_OUTPUT_PLA(cnfball2_output_pla)
|
||||
MCFG_TMS1XXX_READ_K_CB(READ8(cnfball2_state, read_k))
|
||||
MCFG_TMS1XXX_WRITE_R_CB(WRITE16(cnfball2_state, write_r))
|
||||
MCFG_TMS1XXX_WRITE_O_CB(WRITE16(cnfball2_state, write_o))
|
||||
|
||||
MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", hh_tms1k_state, display_decay_tick, attotime::from_msec(1))
|
||||
MCFG_DEFAULT_LAYOUT(layout_cnfball2)
|
||||
|
||||
/* sound hardware */
|
||||
MCFG_SPEAKER_STANDARD_MONO("mono")
|
||||
MCFG_SOUND_ADD("speaker", SPEAKER_SOUND, 0)
|
||||
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/***************************************************************************
|
||||
|
||||
Entex (Electronic) Baseball (1)
|
||||
@ -4525,6 +4650,7 @@ static INPUT_PORTS_START( tandy12 )
|
||||
INPUT_PORTS_END
|
||||
|
||||
|
||||
// output PLA is not decapped
|
||||
static const UINT16 tandy12_output_pla[0x20] =
|
||||
{
|
||||
// these are certain
|
||||
@ -4809,10 +4935,7 @@ public:
|
||||
|
||||
void phpball_state::prepare_display()
|
||||
{
|
||||
// R0-R2 are 7segs
|
||||
for (int y = 0; y < 3; y++)
|
||||
m_display_segmask[y] = 0x7f;
|
||||
|
||||
set_display_segmask(7, 0x7f);
|
||||
display_matrix(7, 9, m_o, m_r);
|
||||
}
|
||||
|
||||
@ -4824,6 +4947,7 @@ WRITE16_MEMBER(phpball_state::write_r)
|
||||
// R9: input mux
|
||||
m_inp_mux = data >> 9 & 1;
|
||||
|
||||
// R0-R2: digit select
|
||||
// R0-R8: led select
|
||||
m_r = data;
|
||||
prepare_display();
|
||||
@ -4831,7 +4955,7 @@ WRITE16_MEMBER(phpball_state::write_r)
|
||||
|
||||
WRITE16_MEMBER(phpball_state::write_o)
|
||||
{
|
||||
// O0-O6: led state
|
||||
// O0-O6: digit segment/led data
|
||||
// O7: N/C
|
||||
m_o = data & 0x7f;
|
||||
prepare_display();
|
||||
@ -4969,6 +5093,17 @@ ROM_START( tc4 )
|
||||
ROM_END
|
||||
|
||||
|
||||
ROM_START( cnfball2 )
|
||||
ROM_REGION( 0x0800, "maincpu", 0 )
|
||||
ROM_LOAD( "mp1181", 0x0000, 0x0800, CRC(4553a840) SHA1(2e1132c9bc51641f77ba7f2430b5a3b2766b3a3d) )
|
||||
|
||||
ROM_REGION( 867, "maincpu:mpla", 0 )
|
||||
ROM_LOAD( "tms1100_common2_micro.pla", 0, 867, BAD_DUMP CRC(7cc90264) SHA1(c6e1cf1ffb178061da9e31858514f7cd94e86990) ) // not verified
|
||||
ROM_REGION( 365, "maincpu:opla", 0 )
|
||||
ROM_LOAD( "tms1100_cnfball2_output.pla", 0, 365, NO_DUMP )
|
||||
ROM_END
|
||||
|
||||
|
||||
ROM_START( ebball )
|
||||
ROM_REGION( 0x0400, "maincpu", 0 )
|
||||
ROM_LOAD( "mp0914", 0x0000, 0x0400, CRC(3c6fb05b) SHA1(b2fe4b3ca72d6b4c9bfa84d67f64afdc215e7178) )
|
||||
@ -5317,6 +5452,8 @@ CONS( 1980, h2hfootb, 0, 0, h2hfootb, h2hfootb, driver_device, 0, "Col
|
||||
CONS( 1980, h2hbaseb, 0, 0, h2hbaseb, h2hbaseb, driver_device, 0, "Coleco", "Head to Head Baseball", MACHINE_SUPPORTS_SAVE )
|
||||
CONS( 1981, tc4, 0, 0, tc4, tc4, driver_device, 0, "Coleco", "Total Control 4", MACHINE_SUPPORTS_SAVE )
|
||||
|
||||
CONS( 1979, cnfball2, 0, 0, cnfball2, cnfball2, driver_device, 0, "Conic", "Electronic Football II (Conic)", MACHINE_SUPPORTS_SAVE )
|
||||
|
||||
CONS( 1979, ebball, 0, 0, ebball, ebball, driver_device, 0, "Entex", "Electronic Baseball (Entex)", MACHINE_SUPPORTS_SAVE )
|
||||
CONS( 1979, ebball2, 0, 0, ebball2, ebball2, driver_device, 0, "Entex", "Electronic Baseball 2 (Entex)", MACHINE_SUPPORTS_SAVE )
|
||||
CONS( 1980, ebball3, 0, 0, ebball3, ebball3, driver_device, 0, "Entex", "Electronic Baseball 3 (Entex)", MACHINE_SUPPORTS_SAVE )
|
||||
|
@ -438,9 +438,8 @@ public:
|
||||
WRITE16_MEMBER(ti1000_state::write_r)
|
||||
{
|
||||
// R0-R7: select digit
|
||||
UINT8 o = BITSWAP8(m_o,7,4,3,2,1,0,6,5);
|
||||
set_display_segmask(0xff, 0xff);
|
||||
display_matrix(8, 8, o, data);
|
||||
display_matrix(8, 8, m_o, data);
|
||||
}
|
||||
|
||||
WRITE16_MEMBER(ti1000_state::write_o)
|
||||
@ -448,7 +447,7 @@ WRITE16_MEMBER(ti1000_state::write_o)
|
||||
// O0-O3,O5(?): input mux
|
||||
// O0-O7: digit segments
|
||||
m_inp_mux = (data & 0xf) | (data >> 1 & 0x10);
|
||||
m_o = data;
|
||||
m_o = BITSWAP8(data,7,4,3,2,1,0,6,5);
|
||||
}
|
||||
|
||||
READ8_MEMBER(ti1000_state::read_k)
|
||||
|
185
src/mame/layout/cnfball2.lay
Normal file
185
src/mame/layout/cnfball2.lay
Normal file
@ -0,0 +1,185 @@
|
||||
<?xml version="1.0"?>
|
||||
<mamelayout version="2">
|
||||
|
||||
<!-- define elements -->
|
||||
|
||||
<element name="static_black"><rect><color red="0.0" green="0.0" blue="0.0" /></rect></element>
|
||||
<element name="static_white"><rect><color red="0.8" green="0.8" blue="0.8" /></rect></element>
|
||||
<element name="static_green"><rect><color red="0.1" green="0.5" blue="0.2" /></rect></element>
|
||||
|
||||
<element name="text_down">
|
||||
<rect><color red="0.1" green="0.5" blue="0.2" /></rect>
|
||||
<text string="DOWN"><color red="0.8" green="0.8" blue="0.8" /></text>
|
||||
</element>
|
||||
<element name="text_home">
|
||||
<rect><color red="0.1" green="0.5" blue="0.2" /></rect>
|
||||
<text string="HOME"><color red="0.8" green="0.8" blue="0.8" /></text>
|
||||
</element>
|
||||
<element name="text_yards">
|
||||
<rect><color red="0.1" green="0.5" blue="0.2" /></rect>
|
||||
<text string="YARDS TO GO"><color red="0.8" green="0.8" blue="0.8" /></text>
|
||||
</element>
|
||||
<element name="text_time">
|
||||
<rect><color red="0.1" green="0.5" blue="0.2" /></rect>
|
||||
<text string="TIME REMAINING"><color red="0.8" green="0.8" blue="0.8" /></text>
|
||||
</element>
|
||||
<element name="text_field">
|
||||
<rect><color red="0.1" green="0.5" blue="0.2" /></rect>
|
||||
<text string="FIELD POSITION"><color red="0.8" green="0.8" blue="0.8" /></text>
|
||||
</element>
|
||||
<element name="text_visitor">
|
||||
<rect><color red="0.1" green="0.5" blue="0.2" /></rect>
|
||||
<text string="VISITOR"><color red="0.8" green="0.8" blue="0.8" /></text>
|
||||
</element>
|
||||
|
||||
<element name="text_p1">
|
||||
<rect><color red="0.06" green="0.3" blue="0.12" /></rect>
|
||||
<text string="PL SEL:">
|
||||
<bounds x="0.0" y="0.17" width="1.0" height="0.6" />
|
||||
<color red="0.7" green="0.7" blue="0.8" />
|
||||
</text>
|
||||
</element>
|
||||
<element name="text_p2" defstate="0">
|
||||
<rect><color red="0.06" green="0.3" blue="0.12" /></rect>
|
||||
<text state="0" string="RUN">
|
||||
<bounds x="0.0" y="0.17" width="1.0" height="0.6" />
|
||||
<color red="0.82" green="0.82" blue="0.82" />
|
||||
</text>
|
||||
<text state="1" string="PASS">
|
||||
<bounds x="0.0" y="0.17" width="1.0" height="0.6" />
|
||||
<color red="0.82" green="0.82" blue="0.82" />
|
||||
</text>
|
||||
</element>
|
||||
|
||||
<element name="digit" defstate="0">
|
||||
<led7seg><color red="1.0" green="0.25" blue="0.26" /></led7seg>
|
||||
</element>
|
||||
<element name="seg" defstate="0">
|
||||
<rect state="0"><color red="0.13" green="0.0325" blue="0.0338" /></rect>
|
||||
<rect state="1"><color red="1.0" green="0.25" blue="0.26" /></rect>
|
||||
</element>
|
||||
|
||||
|
||||
<!-- build screen -->
|
||||
|
||||
<view name="Internal Layout">
|
||||
<bounds left="-9" right="393" top="-104" bottom="186" />
|
||||
<bezel element="static_black">
|
||||
<bounds left="-9" right="393" top="-104" bottom="186" />
|
||||
</bezel>
|
||||
|
||||
<!-- bezel -->
|
||||
|
||||
<bezel element="static_green"><bounds left="-9" right="393" top="-110" bottom="-60" /></bezel>
|
||||
<bezel element="static_green"><bounds left="-9" right="393" top="111" bottom="200" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="-10" y="-84" width="404" height="3" /></bezel>
|
||||
<bezel element="text_down"><bounds x="5" y="-92" width="66" height="19" /></bezel>
|
||||
<bezel element="text_field"><bounds x="122" y="-92" width="140" height="19" /></bezel>
|
||||
<bezel element="text_yards"><bounds x="286" y="-92" width="111" height="19" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="-10" y="141" width="404" height="3" /></bezel>
|
||||
<bezel element="text_home"><bounds x="5" y="133" width="66" height="19" /></bezel>
|
||||
<bezel element="text_time"><bounds x="122" y="133" width="140" height="19" /></bezel>
|
||||
<bezel element="text_visitor"><bounds x="306" y="133" width="80" height="19" /></bezel>
|
||||
|
||||
<bezel element="text_p1"><bounds x="316" y="161" width="40" height="16" /></bezel>
|
||||
<bezel element="text_p2" inputtag="IN.0" inputmask="0x04">
|
||||
<bounds x="354" y="161" width="35" height="16" />
|
||||
</bezel>
|
||||
|
||||
<bezel element="static_white"><bounds left="-9" right="393" top="-61" bottom="-51" /></bezel>
|
||||
<bezel element="static_white"><bounds left="-9" right="393" top="110" bottom="120" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="-9" y="-52" width="4" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="37" y="-52" width="2" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="81" y="-52" width="2" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="125" y="-52" width="2" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="169" y="-52" width="2" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="213" y="-52" width="2" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="257" y="-52" width="2" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="301" y="-52" width="2" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="345" y="-52" width="2" height="163" /></bezel>
|
||||
<bezel element="static_white"><bounds x="389" y="-52" width="4" height="163" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="-8" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="-8" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="-8" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="36" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="36" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="36" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="80" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="80" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="80" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="124" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="124" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="124" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="168" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="168" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="168" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="212" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="212" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="212" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="256" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="256" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="256" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="300" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="300" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="300" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="344" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="344" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="344" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<bezel element="static_white"><bounds x="388" y="2" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="388" y="29" width="4" height="1" /></bezel>
|
||||
<bezel element="static_white"><bounds x="388" y="56" width="4" height="1" /></bezel>
|
||||
|
||||
<!-- leds -->
|
||||
|
||||
<bezel name="digit8" element="digit"><bounds x="3" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="8.8" element="seg"><bounds x="7" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="8.9" element="seg"><bounds x="7" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
<bezel name="digit7" element="digit"><bounds x="47" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="7.8" element="seg"><bounds x="51" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="7.9" element="seg"><bounds x="51" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
<bezel name="digit6" element="digit"><bounds x="91" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="6.8" element="seg"><bounds x="95" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="6.9" element="seg"><bounds x="95" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
<bezel name="digit5" element="digit"><bounds x="135" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="5.8" element="seg"><bounds x="139" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="5.9" element="seg"><bounds x="139" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
<bezel name="digit4" element="digit"><bounds x="179" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="4.8" element="seg"><bounds x="183" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="4.9" element="seg"><bounds x="183" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
<bezel name="digit3" element="digit"><bounds x="223" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="3.8" element="seg"><bounds x="227" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="3.9" element="seg"><bounds x="227" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
<bezel name="digit2" element="digit"><bounds x="267" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="2.8" element="seg"><bounds x="271" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="2.9" element="seg"><bounds x="271" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
<bezel name="digit1" element="digit"><bounds x="311" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="1.8" element="seg"><bounds x="315" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="1.9" element="seg"><bounds x="315" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
<bezel name="digit0" element="digit"><bounds x="355" y="-15.5" width="24" height="32" /></bezel>
|
||||
<bezel name="0.8" element="seg"><bounds x="359" y="42.5" width="15" height="3" /></bezel>
|
||||
<bezel name="0.9" element="seg"><bounds x="359" y="71.5" width="15" height="3" /></bezel>
|
||||
|
||||
|
||||
</view>
|
||||
</mamelayout>
|
@ -2291,6 +2291,7 @@ cqback // Coleco
|
||||
h2hbaseb // Coleco
|
||||
h2hfootb // Coleco
|
||||
tc4 // Coleco
|
||||
cnfball2 // Conic
|
||||
ebball // Entex
|
||||
ebball2 // Entex
|
||||
ebball3 // Entex
|
||||
|
Loading…
Reference in New Issue
Block a user