diff options
author | 2020-07-11 21:20:46 +0200 | |
---|---|---|
committer | 2020-07-11 21:21:08 +0200 | |
commit | 68f6988509a6927b44f42fccfe82e76a49cfff3b (patch) | |
tree | f685530a5909ffe17340bd293f0dc29d84ca94b4 /scripts/src/machine.lua | |
parent | 902b0da8f5f02e148e6913e27bbd788d684fc355 (diff) |
-midzeus: Moved some Zeus2-specific members into the appropriate subclass, and added more state registration. [Ryan Holtz]
-tsb12lv01a: Added a skeleton device for the TI TSB12LV01A IEEE 1394 link-layer controller. [Ryan Holtz]
-ibm21s850: Added a skeleton device for the iBM 21S850 IEEE 1394 PHY controller. [Ryan Holtz]
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 ddacf5da639..4aa576ad317 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1538,6 +1538,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ibm21s850.h,MACHINES["IBM21S850"] = true +--------------------------------------------------- + +if (MACHINES["IBM21S850"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ibm21s850.cpp", + MAME_DIR .. "src/devices/machine/ibm21s850.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/idectrl.h,MACHINES["IDECTRL"] = true --@src/devices/machine/vt83c461.h,MACHINES["IDECTRL"] = true --------------------------------------------------- @@ -3186,6 +3198,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/tsb12lv01a.h,MACHINES["TSB12LV01A"] = true +--------------------------------------------------- + +if (MACHINES["TSB12LV01A"]~=null) then + files { + MAME_DIR .. "src/devices/machine/tsb12lv01a.cpp", + MAME_DIR .. "src/devices/machine/tsb12lv01a.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/tube.h,MACHINES["TUBE"] = true --------------------------------------------------- |