mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
(MESS) ht68k: add starter softlist (nw)
This commit is contained in:
parent
6545220a4c
commit
ddccfd70cb
3 changed files with 33 additions and 0 deletions
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -127,6 +127,7 @@ hash/horizon.xml svneol=native#text/xml
|
||||||
hash/hp9835a_rom.xml svneol=native#text/xml
|
hash/hp9835a_rom.xml svneol=native#text/xml
|
||||||
hash/hp9845a_rom.xml svneol=native#text/xml
|
hash/hp9845a_rom.xml svneol=native#text/xml
|
||||||
hash/hp9845b_rom.xml svneol=native#text/xml
|
hash/hp9845b_rom.xml svneol=native#text/xml
|
||||||
|
hash/ht68k.xml svneol=native#text/plain
|
||||||
hash/hx20_flop.xml svneol=native#text/xml
|
hash/hx20_flop.xml svneol=native#text/xml
|
||||||
hash/ibm5140.xml svneol=native#text/xml
|
hash/ibm5140.xml svneol=native#text/xml
|
||||||
hash/ibm5150.xml svneol=native#text/xml
|
hash/ibm5150.xml svneol=native#text/xml
|
||||||
|
|
30
hash/ht68k.xml
Normal file
30
hash/ht68k.xml
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
|
||||||
|
<!-- Generated by SLIST 0.2.1 -->
|
||||||
|
|
||||||
|
<softwarelist name="ht68k" description="HT68K 5.25 disks">
|
||||||
|
<software name="kos">
|
||||||
|
<description>K-OS</description>
|
||||||
|
<year>1986</year>
|
||||||
|
<publisher>Hawthorne Technology</publisher>
|
||||||
|
|
||||||
|
<part name="flop1" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="306305">
|
||||||
|
<rom name="kos_os.td0" size="306305" crc="8a10d01a" sha1="435fc374980e53077008444aca4ebd22bb406061" offset="0x0000" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
</software>
|
||||||
|
|
||||||
|
<software name="motbasic">
|
||||||
|
<description>MotionBASIC</description>
|
||||||
|
<year>1986</year>
|
||||||
|
<publisher>Hawthorne Technology</publisher>
|
||||||
|
|
||||||
|
<part name="flop1" interface="floppy_5_25">
|
||||||
|
<dataarea name="flop" size="210212">
|
||||||
|
<rom name="motbasic.td0" size="210212" crc="a1ffe471" sha1="5aa88bda9b8a740391dce3dc441e107234c4abb2" offset="0x0000" />
|
||||||
|
</dataarea>
|
||||||
|
</part>
|
||||||
|
</software>
|
||||||
|
|
||||||
|
</softwarelist>
|
|
@ -141,6 +141,8 @@ static MACHINE_CONFIG_START( ht68k, ht68k_state )
|
||||||
MCFG_FLOPPY_DRIVE_ADD("wd1770:1", ht68k_floppies, "525dd", floppy_image_device::default_floppy_formats)
|
MCFG_FLOPPY_DRIVE_ADD("wd1770:1", ht68k_floppies, "525dd", floppy_image_device::default_floppy_formats)
|
||||||
MCFG_FLOPPY_DRIVE_ADD("wd1770:2", ht68k_floppies, "525dd", floppy_image_device::default_floppy_formats)
|
MCFG_FLOPPY_DRIVE_ADD("wd1770:2", ht68k_floppies, "525dd", floppy_image_device::default_floppy_formats)
|
||||||
MCFG_FLOPPY_DRIVE_ADD("wd1770:3", ht68k_floppies, "525dd", floppy_image_device::default_floppy_formats)
|
MCFG_FLOPPY_DRIVE_ADD("wd1770:3", ht68k_floppies, "525dd", floppy_image_device::default_floppy_formats)
|
||||||
|
|
||||||
|
MCFG_SOFTWARE_LIST_ADD("flop525_list", "ht68k")
|
||||||
MACHINE_CONFIG_END
|
MACHINE_CONFIG_END
|
||||||
|
|
||||||
/* ROM definition */
|
/* ROM definition */
|
||||||
|
|
Loading…
Reference in a new issue