diff options
author | 2020-01-04 22:11:48 +0100 | |
---|---|---|
committer | 2020-01-04 16:11:48 -0500 | |
commit | 2ec25ca6d5cf0dd68d5556f8a58af0dc5b1e2260 (patch) | |
tree | 8256049c139f4ad9bacbaed240276c4b05249a5d /scripts/src/machine.lua | |
parent | c59bf24ff119dc271f2754e926b69624f5e9b004 (diff) |
Emulation of isbc202 floppy disk controller (#6119)
* imds2: isbc202 floppy disk controller added
* imds2: attempt to fix problems with CI checks
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 7d1eaef0e7b..f04cb88e031 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4196,3 +4196,27 @@ if (MACHINES["VRENDER0"]~=null) then MAME_DIR .. "src/devices/machine/vrender0.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/i3001.h,MACHINES["I3001"] = true +--------------------------------------------------- + +if (MACHINES["I3001"]~=null) then + files { + MAME_DIR .. "src/devices/machine/i3001.cpp", + MAME_DIR .. "src/devices/machine/i3001.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/i3002.h,MACHINES["I3002"] = true +--------------------------------------------------- + +if (MACHINES["I3002"]~=null) then + files { + MAME_DIR .. "src/devices/machine/i3002.cpp", + MAME_DIR .. "src/devices/machine/i3002.h", + } +end |