New working machines

--------------------
Mr. Mus-I-Cal [hap, Sean Riddle]
This commit is contained in:
hap 2022-07-23 00:01:39 +02:00
parent 7c2a98ff58
commit dc2df58645
8 changed files with 256 additions and 53 deletions

View File

@ -118,7 +118,7 @@ on Joerg Woerner's datamath.org: http://www.datamath.org/IC_List.htm
@MP3005 TMS1730 1989, Tiger Copy Cat (model 7-522)
@MP3200 TMS1000 1978, Parker Brothers Electronic Master Mind
@MP3201 TMS1000 1977, Milton Bradley Electronic Battleship (1977, model 4750A)
*MP3206 TMS1000 1979, Concept 2000 Mr. Mus-I-Cal
@MP3206 TMS1000 1978, Concept 2000 Mr. Mus-I-Cal
@MP3208 TMS1000 1977, Milton Bradley Electronic Battleship (1977, model 4750B)
@MP3226 TMS1000 1978, Milton Bradley Simon (Rev A)
*MP3232 TMS1000 1979, Fonas 2 Player Baseball (no "MP" on chip label)
@ -270,6 +270,7 @@ on Joerg Woerner's datamath.org: http://www.datamath.org/IC_List.htm
#include "mmarvin.lh" // clickable
#include "mmerlin.lh" // clickable
#include "monkeysee.lh"
#include "mrmusical.lh"
#include "palmf31.lh"
#include "palmmd8.lh"
#include "pbmastm.lh"
@ -2864,6 +2865,136 @@ ROM_END
/***************************************************************************
Concept 2000 Mr. Mus-I-Cal
* TMS1000NLL MP3206 (die label 1000C, MP3206)
* 9-digit 7seg LED display(one custom digit), 1-bit sound
***************************************************************************/
class mrmusical_state : public hh_tms1k_state
{
public:
mrmusical_state(const machine_config &mconfig, device_type type, const char *tag) :
hh_tms1k_state(mconfig, type, tag)
{ }
void mrmusical(machine_config &config);
protected:
void update_display();
virtual void write_o(u16 data);
virtual void write_r(u16 data);
virtual u8 read_k();
};
// handlers
void mrmusical_state::update_display()
{
m_display->matrix(m_r, m_o);
}
void mrmusical_state::write_r(u16 data)
{
// R10: speaker out
m_speaker->level_w(BIT(data, 10));
// R0-R5: input mux
// R0-R8: digit select (R6 is a math symbol like with lilprof)
m_inp_mux = m_r = data;
update_display();
}
void mrmusical_state::write_o(u16 data)
{
// O0-O7: digit segment data
m_o = data;
update_display();
}
u8 mrmusical_state::read_k()
{
// K: multiplexed inputs
return read_inputs(6);
}
// config
static INPUT_PORTS_START( mrmusical )
PORT_START("IN.0") // R0
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_0) PORT_CODE(KEYCODE_0_PAD) PORT_NAME("0")
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_STOP) PORT_CODE(KEYCODE_DEL_PAD) PORT_NAME(".")
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_ENTER) PORT_CODE(KEYCODE_ENTER_PAD) PORT_NAME("A=")
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_SLASH_PAD) PORT_NAME(UTF8_DIVIDE)
PORT_START("IN.1") // R1
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_1) PORT_CODE(KEYCODE_1_PAD) PORT_NAME("1")
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_2) PORT_CODE(KEYCODE_2_PAD) PORT_NAME("2")
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_3) PORT_CODE(KEYCODE_3_PAD) PORT_NAME("3")
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_ASTERISK) PORT_NAME(UTF8_MULTIPLY)
PORT_START("IN.2") // R2
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_4) PORT_CODE(KEYCODE_4_PAD) PORT_NAME("4")
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_5) PORT_CODE(KEYCODE_5_PAD) PORT_NAME("5")
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_6) PORT_CODE(KEYCODE_6_PAD) PORT_NAME("6")
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_MINUS_PAD) PORT_NAME("-")
PORT_START("IN.3") // R3
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_7) PORT_CODE(KEYCODE_7_PAD) PORT_NAME("7")
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_8) PORT_CODE(KEYCODE_8_PAD) PORT_NAME("8")
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_9) PORT_CODE(KEYCODE_9_PAD) PORT_NAME("9")
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_PLUS_PAD) PORT_NAME("+")
PORT_START("IN.4") // R4
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_UNUSED )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNUSED )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_BACKSPACE) PORT_NAME("CE")
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_DEL) PORT_NAME("C")
PORT_START("IN.5") // R5
PORT_CONFNAME( 0x01, 0x00, "Mode" )
PORT_CONFSETTING( 0x01, "A" )
PORT_CONFSETTING( 0x00, "=" )
INPUT_PORTS_END
void mrmusical_state::mrmusical(machine_config &config)
{
// basic machine hardware
TMS1000(config, m_maincpu, 300000); // approximation - RC osc. R=33K, C=100pF
m_maincpu->k().set(FUNC(mrmusical_state::read_k));
m_maincpu->o().set(FUNC(mrmusical_state::write_o));
m_maincpu->r().set(FUNC(mrmusical_state::write_r));
// video hardware
PWM_DISPLAY(config, m_display).set_size(9, 8);
m_display->set_segmask(0x1ff, 0xff);
m_display->set_segmask(0x180, 0x7f); // no DP for leftmost 2 digits
config.set_default_layout(layout_mrmusical);
// sound hardware
SPEAKER(config, "mono").front_center();
SPEAKER_SOUND(config, m_speaker);
m_speaker->add_route(ALL_OUTPUTS, "mono", 0.25);
}
// roms
ROM_START( mrmusical )
ROM_REGION( 0x0400, "maincpu", 0 )
ROM_LOAD( "mp3206", 0x0000, 0x0400, CRC(15013d4d) SHA1(2bbc5599183381ad050b7518bca1babc579ee79d) )
ROM_REGION( 867, "maincpu:mpla", 0 )
ROM_LOAD( "tms1000_common1_micro.pla", 0, 867, CRC(4becec19) SHA1(3c8a9be0f00c88c81f378b76886c39b10304f330) )
ROM_REGION( 365, "maincpu:opla", 0 )
ROM_LOAD( "tms1000_mrmusical_output.pla", 0, 365, CRC(9652aa3b) SHA1(be41e1588561875b362ba878098ede8299792166) )
ROM_END
/***************************************************************************
Conic Electronic Basketball
@ -7975,7 +8106,7 @@ INPUT_PORTS_END
void simon_state::simon(machine_config &config)
{
// basic machine hardware
TMS1000(config, m_maincpu, 350000); // approximation - RC osc. R=33K, C=100pF
TMS1000(config, m_maincpu, 325000); // approximation - RC osc. R=33K, C=100pF
m_maincpu->k().set(FUNC(simon_state::read_k));
m_maincpu->r().set(FUNC(simon_state::write_r));
@ -14355,6 +14486,8 @@ CONS( 1981, h2hboxing, 0, 0, h2hboxing, h2hboxing, h2hboxing_state, emp
CONS( 1981, quizwizc, 0, 0, quizwizc, quizwizc, quizwizc_state, empty_init, "Coleco", "Quiz Wiz Challenger", MACHINE_SUPPORTS_SAVE ) // ***
CONS( 1981, tc4, 0, 0, tc4, tc4, tc4_state, empty_init, "Coleco", "Total Control 4", MACHINE_SUPPORTS_SAVE | MACHINE_REQUIRES_ARTWORK )
COMP( 1978, mrmusical, 0, 0, mrmusical, mrmusical, mrmusical_state, empty_init, "Concept 2000", "Mr. Mus-I-Cal", MACHINE_SUPPORTS_SAVE )
CONS( 1979, cnbaskb, 0, 0, cnbaskb, cnbaskb, cnbaskb_state, empty_init, "Conic", "Electronic Basketball (Conic)", MACHINE_SUPPORTS_SAVE )
CONS( 1979, cmsport, 0, 0, cmsport, cmsport, cmsport_state, empty_init, "Conic", "Electronic Multisport", MACHINE_SUPPORTS_SAVE | MACHINE_REQUIRES_ARTWORK )
CONS( 1979, cnfball, 0, 0, cnfball, cnfball, cnfball_state, empty_init, "Conic", "Electronic Football (Conic, TMS1000 version)", MACHINE_SUPPORTS_SAVE )

View File

@ -9,24 +9,24 @@ license:CC0
<!-- define elements -->
<element name="digit" defstate="0">
<led7seg><color red="1.0" green="0.3" blue="0.2" /></led7seg>
<led7seg><color red="1.0" green="0.1" blue="0.15" /></led7seg>
</element>
<element name="lamp_dot" defstate="0">
<disk state="1"><color red="1.0" green="0.3" blue="0.2" /></disk>
<disk state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></disk>
<disk state="1"><color red="1.0" green="0.1" blue="0.15" /></disk>
<disk state="0"><color red="0.125" green="0.012" blue="0.019" /></disk>
</element>
<element name="lamp_dash" defstate="0">
<rect state="1"><color red="1.0" green="0.3" blue="0.2" /></rect>
<rect state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></rect>
<rect state="1"><color red="1.0" green="0.1" blue="0.15" /></rect>
<rect state="0"><color red="0.125" green="0.012" blue="0.019" /></rect>
</element>
<element name="lamp_slash" defstate="0">
<text string="/" state="1"><color red="1.0" green="0.3" blue="0.2" /></text>
<text string="/" state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></text>
<text string="/" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="/" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
<element name="lamp_backslash" defstate="0">
<text string="&#x5c;" state="1"><color red="1.0" green="0.3" blue="0.2" /></text>
<text string="&#x5c;" state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></text>
<text string="&#x5c;" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="&#x5c;" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
@ -62,8 +62,7 @@ license:CC0
<bounds x="90" y="10" width="10" height="15" />
</element>
<!-- math symbols custom digit -->
<!-- math symbols custom digit -->
<element name="8.6" ref="lamp_dash"><bounds x="21.5" y="17.25" width="7" height="0.5" /></element>
<element name="8.1" ref="lamp_slash"><bounds x="24" y="9.5" width="5" height="7.5" /></element>
@ -75,13 +74,11 @@ license:CC0
<element name="8.0" ref="lamp_dot"><bounds x="24.25" y="12.25" width="1.5" height="1.5" /></element>
<element name="8.0" ref="lamp_dot"><bounds x="24.25" y="21.75" width="1.5" height="1.5" /></element>
<!-- equals sign custom digit -->
<!-- equals sign custom digit -->
<element name="9.0" ref="lamp_dash"><bounds x="51.5" y="14.5" width="7" height="0.5" /></element>
<element name="9.3" ref="lamp_dash"><bounds x="51.5" y="20.0" width="7" height="0.5" /></element>
<!-- other lamps -->
<!-- other lamps -->
<element name="10.0" ref="lamp_dot"><bounds x="1" y="1" width="4" height="4" /></element>
<element name="10.1" ref="lamp_dot"><bounds x="26" y="1" width="4" height="4" /></element>
<element name="10.3" ref="lamp_dot"><bounds x="51" y="1" width="4" height="4" /></element>

View File

@ -0,0 +1,75 @@
<?xml version="1.0"?>
<!--
license:CC0
-->
<mamelayout version="2">
<!-- define elements -->
<element name="digit" defstate="0">
<led7seg><color red="1.0" green="0.1" blue="0.15" /></led7seg>
</element>
<element name="lamp_dot" defstate="0">
<disk state="1"><color red="1.0" green="0.1" blue="0.15" /></disk>
<disk state="0"><color red="0.125" green="0.012" blue="0.019" /></disk>
</element>
<element name="lamp_dash" defstate="0">
<rect state="1"><color red="1.0" green="0.1" blue="0.15" /></rect>
<rect state="0"><color red="0.125" green="0.012" blue="0.019" /></rect>
</element>
<element name="lamp_slash" defstate="0">
<text string="/" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="/" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
<element name="lamp_backslash" defstate="0">
<text string="&#x5c;" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="&#x5c;" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
<!-- build screen -->
<view name="Internal Layout">
<bounds left="0" right="90" top="0" bottom="15" />
<element name="digit8" ref="digit">
<bounds x="0" y="0" width="10" height="15" />
</element>
<element name="digit7" ref="digit">
<bounds x="10" y="0" width="10" height="15" />
</element>
<element name="digit5" ref="digit">
<bounds x="30" y="0" width="10" height="15" />
</element>
<element name="digit4" ref="digit">
<bounds x="40" y="0" width="10" height="15" />
</element>
<element name="digit3" ref="digit">
<bounds x="50" y="0" width="10" height="15" />
</element>
<element name="digit2" ref="digit">
<bounds x="60" y="0" width="10" height="15" />
</element>
<element name="digit1" ref="digit">
<bounds x="70" y="0" width="10" height="15" />
</element>
<element name="digit0" ref="digit">
<bounds x="80" y="0" width="10" height="15" />
</element>
<!-- math symbols custom digit -->
<element name="6.5" ref="lamp_dash"><bounds x="21.5" y="7.25" width="7" height="0.5" /></element>
<element name="6.1" ref="lamp_slash"><bounds x="24" y="-0.5" width="5" height="7.5" /></element>
<element name="6.4" ref="lamp_slash"><bounds x="21" y="7" width="5" height="7.5" /></element>
<element name="6.6" ref="lamp_backslash"><bounds x="21" y="-0.5" width="5" height="7.5" /></element>
<element name="6.2" ref="lamp_backslash"><bounds x="24" y="7" width="5" height="7.5" /></element>
<element name="6.0" ref="lamp_dot"><bounds x="24.25" y="2.25" width="1.5" height="1.5" /></element>
<element name="6.3" ref="lamp_dot"><bounds x="24.25" y="11.75" width="1.5" height="1.5" /></element>
</view>
</mamelayout>

View File

@ -4,23 +4,23 @@ license:CC0
-->
<mamelayout version="2">
<!-- define elements -->
<!-- define elements -->
<element name="digit" defstate="0">
<led7seg><color red="1.0" green="0.3" blue="0.2" /></led7seg>
<led7seg><color red="1.0" green="0.1" blue="0.15" /></led7seg>
</element>
<element name="seg_rect" defstate="0">
<rect state="1"><color red="1.0" green="0.3" blue="0.2" /></rect>
<rect state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></rect>
<rect state="1"><color red="1.0" green="0.1" blue="0.15" /></rect>
<rect state="0"><color red="0.125" green="0.012" blue="0.019" /></rect>
</element>
<element name="seg_x1" defstate="0">
<text string="/" state="1"><color red="1.0" green="0.3" blue="0.2" /></text>
<text string="/" state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></text>
<text string="/" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="/" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
<element name="seg_x2" defstate="0">
<text string="&#x5c;" state="1"><color red="1.0" green="0.3" blue="0.2" /></text>
<text string="&#x5c;" state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></text>
<text string="&#x5c;" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="&#x5c;" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
<element name="gled" defstate="0">
@ -32,7 +32,7 @@ license:CC0
</element>
<!-- build screen -->
<!-- build screen -->
<view name="Internal Layout">
<bounds left="0" right="93.5" top="0" bottom="15" />
@ -50,7 +50,6 @@ license:CC0
<element name="digit7" ref="digit"><bounds x="70" y="0" width="10" height="15" /></element>
<!-- math symbols custom digit -->
<element name="2.4" ref="seg_rect"><bounds x="21.5" y="7.25" width="7" height="0.5" /></element>
<element name="2.0" ref="seg_rect"><bounds x="24.75" y="0.9" width="0.5" height="5.75" /></element>

View File

@ -4,23 +4,23 @@ license:CC0
-->
<mamelayout version="2">
<!-- define elements -->
<!-- define elements -->
<element name="digit" defstate="0">
<led7seg><color red="1.0" green="0.3" blue="0.2" /></led7seg>
<led7seg><color red="1.0" green="0.1" blue="0.15" /></led7seg>
</element>
<element name="seg_rect" defstate="0">
<rect state="1"><color red="1.0" green="0.3" blue="0.2" /></rect>
<rect state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></rect>
<rect state="1"><color red="1.0" green="0.1" blue="0.15" /></rect>
<rect state="0"><color red="0.125" green="0.012" blue="0.019" /></rect>
</element>
<element name="seg_x1" defstate="0">
<text string="/" state="1"><color red="1.0" green="0.3" blue="0.2" /></text>
<text string="/" state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></text>
<text string="/" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="/" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
<element name="seg_x2" defstate="0">
<text string="&#x5c;" state="1"><color red="1.0" green="0.3" blue="0.2" /></text>
<text string="&#x5c;" state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></text>
<text string="&#x5c;" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="&#x5c;" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
<element name="gled" defstate="0">
@ -32,7 +32,7 @@ license:CC0
</element>
<!-- build screen -->
<!-- build screen -->
<view name="Internal Layout">
<bounds left="0" right="93.5" top="0" bottom="15" />
@ -50,7 +50,6 @@ license:CC0
<element name="digit7" ref="digit"><bounds x="70" y="0" width="10" height="15" /></element>
<!-- math symbols custom digit -->
<element name="2.4" ref="seg_rect"><bounds x="21.5" y="7.25" width="7" height="0.5" /></element>
<element name="2.0" ref="seg_rect"><bounds x="24.75" y="0.9" width="0.5" height="5.75" /></element>

View File

@ -4,15 +4,15 @@ license:CC0
-->
<mamelayout version="2">
<!-- define elements -->
<!-- define elements -->
<element name="digit" defstate="0">
<led7seg><color red="1.0" green="0.3" blue="0.2" /></led7seg>
<led7seg><color red="1.0" green="0.1" blue="0.15" /></led7seg>
</element>
<element name="ledr" defstate="0">
<disk state="1"><color red="1.0" green="0.3" blue="0.2" /></disk>
<disk state="0"><color red="0.2" green="0.05" blue="0.04" /></disk>
<disk state="1"><color red="1.0" green="0.1" blue="0.15" /></disk>
<disk state="0"><color red="0.2" green="0.02" blue="0.04" /></disk>
</element>
<element name="ledg" defstate="0">
<disk state="1"><color red="0.2" green="1.0" blue="0.2" /></disk>
@ -20,7 +20,7 @@ license:CC0
</element>
<!-- build screen -->
<!-- build screen -->
<view name="Internal Layout">
<bounds left="-1" right="61" top="0" bottom="15" />

View File

@ -11,24 +11,24 @@ license:CC0
<!-- define elements -->
<element name="digit" defstate="0">
<led7seg><color red="1.0" green="0.3" blue="0.2" /></led7seg>
<led7seg><color red="1.0" green="0.1" blue="0.15" /></led7seg>
</element>
<element name="lamp_dot" defstate="0">
<disk state="1"><color red="1.0" green="0.3" blue="0.2" /></disk>
<disk state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></disk>
<disk state="1"><color red="1.0" green="0.1" blue="0.15" /></disk>
<disk state="0"><color red="0.125" green="0.012" blue="0.019" /></disk>
</element>
<element name="lamp_dash" defstate="0">
<rect state="1"><color red="1.0" green="0.3" blue="0.2" /></rect>
<rect state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></rect>
<rect state="1"><color red="1.0" green="0.1" blue="0.15" /></rect>
<rect state="0"><color red="0.125" green="0.012" blue="0.019" /></rect>
</element>
<element name="lamp_slash" defstate="0">
<text string="/" state="1"><color red="1.0" green="0.3" blue="0.2" /></text>
<text string="/" state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></text>
<text string="/" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="/" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
<element name="lamp_backslash" defstate="0">
<text string="&#x5c;" state="1"><color red="1.0" green="0.3" blue="0.2" /></text>
<text string="&#x5c;" state="0"><color red="0.125490" green="0.035294" blue="0.0235294" /></text>
<text string="&#x5c;" state="1"><color red="1.0" green="0.1" blue="0.15" /></text>
<text string="&#x5c;" state="0"><color red="0.125" green="0.012" blue="0.019" /></text>
</element>
@ -63,8 +63,7 @@ license:CC0
<bounds x="80" y="0" width="10" height="15" />
</element>
<!-- math symbols custom digit -->
<!-- math symbols custom digit -->
<element name="6.5" ref="lamp_dash"><bounds x="21.5" y="7.25" width="7" height="0.5" /></element>
<element name="6.1" ref="lamp_slash"><bounds x="24" y="-0.5" width="5" height="7.5" /></element>

View File

@ -16830,6 +16830,7 @@ merlina // Parker Bros
mmarvin // Entex
mmerlin // Parker Bros
monkeysee // Tandy Corporation
mrmusical // Concept 2000
palmf31 // Canon
palmmd8 // Canon
pbmastm // Parker Bros