mirror of
https://github.com/holub/mame
synced 2025-06-07 13:23:50 +03:00
gln: Assign software list (nw)
This commit is contained in:
parent
22bef0be37
commit
c49e1cc106
@ -2,7 +2,7 @@
|
|||||||
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
||||||
<softwarelist name="gjrstar" description="VTech Genius Junior Redstar cartridges">
|
<softwarelist name="gjrstar" description="VTech Genius Junior Redstar cartridges">
|
||||||
|
|
||||||
<!-- According to the boxart, this is compatible with: Junior Redstar/Redstar 2 -->
|
<!-- According to the boxart, this is compatible with: Junior Redstar/Redstar 2/Redstar 3 -->
|
||||||
<software name="wortspie">
|
<software name="wortspie">
|
||||||
<description>Wortspiele</description>
|
<description>Wortspiele</description>
|
||||||
<year>200?</year>
|
<year>200?</year>
|
||||||
|
@ -1,11 +1,6 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
||||||
<softwarelist name="genius" description="VTech Genius cartridges">
|
<softwarelist name="gln" description="VTech Genius Leader Notebook cartridges">
|
||||||
|
|
||||||
<!-- this software list contains miscellaneous VTech Genius family cartridges, needs to be split to respective systems later -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Compatible with: Genius Leader series (actual compatible models as listed on the box are documented below) -->
|
|
||||||
|
|
||||||
<!-- According to the boxart, this is compatible with: Leader Notebook -->
|
<!-- According to the boxart, this is compatible with: Leader Notebook -->
|
||||||
<software name="franzosis">
|
<software name="franzosis">
|
||||||
@ -21,9 +16,10 @@
|
|||||||
</part>
|
</part>
|
||||||
</software>
|
</software>
|
||||||
|
|
||||||
<!-- According to the boxart, this is compatible with: Leader Notebook/Notebook Plus/Power Notebook -->
|
<!-- According to the boxart, this is compatible with: Leader Notebook
|
||||||
<software name="swga" cloneof="swg">
|
A (later) sticker says compatibility extends to Notebook Plus/Power Notebook -->
|
||||||
<description>Sport-Wissen-Geschichte (Genius Leader Notebook)</description>
|
<software name="swg">
|
||||||
|
<description>Sport-Wissen-Geschichte</description>
|
||||||
<year>200?</year>
|
<year>200?</year>
|
||||||
<publisher>Video Technology</publisher>
|
<publisher>Video Technology</publisher>
|
||||||
<info name="serial" value="80-2455" />
|
<info name="serial" value="80-2455" />
|
@ -220,21 +220,23 @@ void geniusjr_state::machine_start()
|
|||||||
m_rombank->set_entry(0);
|
m_rombank->set_entry(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void geniusjr_state::gln(machine_config &config)
|
void geniusjr_state::gj4000(machine_config &config)
|
||||||
{
|
{
|
||||||
M68HC05L9(config, m_maincpu, 8'000'000); // unknown clock
|
M68HC05L9(config, m_maincpu, 8'000'000); // unknown clock
|
||||||
m_maincpu->set_addrmap(AS_PROGRAM, &geniusjr_state::gj4000_map);
|
m_maincpu->set_addrmap(AS_PROGRAM, &geniusjr_state::gj4000_map);
|
||||||
|
|
||||||
m_bank_size = 0x8000;
|
m_bank_size = 0x8000;
|
||||||
}
|
|
||||||
|
|
||||||
void geniusjr_state::gj4000(machine_config &config)
|
|
||||||
{
|
|
||||||
gln(config);
|
|
||||||
|
|
||||||
SOFTWARE_LIST(config, "cart_list").set_original("gj4000");
|
SOFTWARE_LIST(config, "cart_list").set_original("gj4000");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void geniusjr_state::gln(machine_config &config)
|
||||||
|
{
|
||||||
|
gj4000(config);
|
||||||
|
|
||||||
|
subdevice<software_list_device>("cart_list")->set_original("gln");
|
||||||
|
}
|
||||||
|
|
||||||
void geniusjr_state::gj5000(machine_config &config)
|
void geniusjr_state::gj5000(machine_config &config)
|
||||||
{
|
{
|
||||||
M68HC05L9(config, m_maincpu, 8'000'000); // unknown clock (type also uncertain)
|
M68HC05L9(config, m_maincpu, 8'000'000); // unknown clock (type also uncertain)
|
||||||
|
Loading…
Reference in New Issue
Block a user