mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
gln: Assign software list (nw)
This commit is contained in:
parent
22bef0be37
commit
c49e1cc106
3 changed files with 14 additions and 16 deletions
|
@ -2,7 +2,7 @@
|
|||
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
||||
<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">
|
||||
<description>Wortspiele</description>
|
||||
<year>200?</year>
|
||||
|
|
|
@ -1,11 +1,6 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
||||
<softwarelist name="genius" description="VTech Genius 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) -->
|
||||
<softwarelist name="gln" description="VTech Genius Leader Notebook cartridges">
|
||||
|
||||
<!-- According to the boxart, this is compatible with: Leader Notebook -->
|
||||
<software name="franzosis">
|
||||
|
@ -21,9 +16,10 @@
|
|||
</part>
|
||||
</software>
|
||||
|
||||
<!-- According to the boxart, this is compatible with: Leader Notebook/Notebook Plus/Power Notebook -->
|
||||
<software name="swga" cloneof="swg">
|
||||
<description>Sport-Wissen-Geschichte (Genius Leader Notebook)</description>
|
||||
<!-- According to the boxart, this is compatible with: Leader Notebook
|
||||
A (later) sticker says compatibility extends to Notebook Plus/Power Notebook -->
|
||||
<software name="swg">
|
||||
<description>Sport-Wissen-Geschichte</description>
|
||||
<year>200?</year>
|
||||
<publisher>Video Technology</publisher>
|
||||
<info name="serial" value="80-2455" />
|
|
@ -220,21 +220,23 @@ void geniusjr_state::machine_start()
|
|||
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
|
||||
m_maincpu->set_addrmap(AS_PROGRAM, &geniusjr_state::gj4000_map);
|
||||
|
||||
m_bank_size = 0x8000;
|
||||
}
|
||||
|
||||
void geniusjr_state::gj4000(machine_config &config)
|
||||
{
|
||||
gln(config);
|
||||
|
||||
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)
|
||||
{
|
||||
M68HC05L9(config, m_maincpu, 8'000'000); // unknown clock (type also uncertain)
|
||||
|
|
Loading…
Reference in a new issue