diff options
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | hash/ht68k.xml | 30 | ||||
-rw-r--r-- | src/mess/drivers/ht68k.c | 2 |
3 files changed, 33 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 5828706b8dc..ee2b1f9046d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -127,6 +127,7 @@ hash/horizon.xml svneol=native#text/xml hash/hp9835a_rom.xml svneol=native#text/xml hash/hp9845a_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/ibm5140.xml svneol=native#text/xml hash/ibm5150.xml svneol=native#text/xml diff --git a/hash/ht68k.xml b/hash/ht68k.xml new file mode 100644 index 00000000000..5dfdee4b5ff --- /dev/null +++ b/hash/ht68k.xml @@ -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> diff --git a/src/mess/drivers/ht68k.c b/src/mess/drivers/ht68k.c index 1bdb9011bfb..17f8916430e 100644 --- a/src/mess/drivers/ht68k.c +++ b/src/mess/drivers/ht68k.c @@ -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: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_SOFTWARE_LIST_ADD("flop525_list", "ht68k") MACHINE_CONFIG_END /* ROM definition */ |