diff options
author | 2024-10-27 10:14:19 -0400 | |
---|---|---|
committer | 2024-10-27 10:20:24 -0400 | |
commit | f63e8f0a55f08cea675dfd332cf8197a08bf5358 (patch) | |
tree | 642d4c47869ad100fd38bdf3b5f201f953307c27 /scripts/src/machine.lua | |
parent | 97c4c3bb298b30748cf34a4fd634be1735672342 (diff) |
Thomson floppy disk updates
- to8, to9 & to9p now include the FDC in the base configuration. to9 uses a WD1770 (WD2793 appears to fail calibration), while to8 & to9p use the THM-FC-1 gate array (now a separate device). This eliminates the need to, and ability to, configure floppy disk extensions for the to8, to9 and to9p.
- Changed sector offsets for double-sided .fd images so that they load correctly (usually).
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 053caa56129..acbf897cc85 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3596,6 +3596,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/thmfc1.h,MACHINES["THMFC1"] = true +--------------------------------------------------- + +if (MACHINES["THMFC1"]~=null) then + files { + MAME_DIR .. "src/devices/machine/thmfc1.cpp", + MAME_DIR .. "src/devices/machine/thmfc1.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ticket.h,MACHINES["TICKET"] = true --------------------------------------------------- |