diff options
| author | 2018-04-26 19:36:10 +0200 | |
|---|---|---|
| committer | 2018-04-27 09:43:50 +0200 | |
| commit | c663e1d7cc0d606aa70ef1e6c20c3b690ed0da09 (patch) | |
| tree | c648c8de322adb3907e91fb77d66fbfe6d2c5745 /scripts | |
| parent | 1f6f6765563ad13156cfbe8d2523dc111f87ffd2 (diff) | |
New device, SMSC FDC37C93x Plug and Play Compatible Ultra I/O Controller ! [Samuele Zannoli]
It is not complete yet but the floppy disk and keyboard work and is enough to boot the m55hi-plus motherboard.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/machine.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 6b0c191eebc..7b52ddf58f3 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3299,6 +3299,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/fdc37c93x.h,MACHINES["FDC37C93X"] = true +--------------------------------------------------- + +if (MACHINES["FDC37C93X"]~=null) then + files { + MAME_DIR .. "src/devices/machine/fdc37c93x.cpp", + MAME_DIR .. "src/devices/machine/fdc37c93x.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/pdc.h,MACHINES["PDC"] = true --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 2e77530536a..e1b786e1dce 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -618,6 +618,7 @@ MACHINES["DIABLO_HD"] = true MACHINES["TMS1024"] = true MACHINES["NSC810"] = true MACHINES["VT82C496"] = true +MACHINES["FDC37C93X"] = true MACHINES["GENPC"] = true MACHINES["GEN_LATCH"] = true MACHINES["WATCHDOG"] = true |
