diff options
author | 2022-08-05 03:49:51 -0700 | |
---|---|---|
committer | 2022-08-05 20:49:51 +1000 | |
commit | 7add0628c580c88cfb832e43b7cfaa3a35ed4e87 (patch) | |
tree | 0d66f8cce784babd56b5a431fadc73672420876a /scripts/src/machine.lua | |
parent | c5cff268c2698feddbeb1eca8bac8fbd7138d95a (diff) |
machine/spifi3.cpp: Implemented HP 1TV3-0302 SPIFI3 SCSI controller. (#10137)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index fd039000531..6c564876d8b 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4823,6 +4823,19 @@ end --------------------------------------------------- -- +--@src/devices/machine/spifi3.h,MACHINES["SPIFI3"] = true +--------------------------------------------------- + +if (MACHINES["SPIFI3"]~=null) then + MACHINES["NSCSI"] = true + files { + MAME_DIR .. "src/devices/machine/spifi3.cpp", + MAME_DIR .. "src/devices/machine/spifi3.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/applefdintf.h,MACHINES["APPLE_FDINTF"] = true --------------------------------------------------- if (MACHINES["APPLE_FDINTF"]~=null) then |