diff options
author | 2018-06-21 23:17:39 +0200 | |
---|---|---|
committer | 2018-06-21 23:18:26 +0200 | |
commit | ee604f445499591ff8c5252b248d1e269a791134 (patch) | |
tree | 1c5b095e0dd2950785252b1fe35dd9f6282807df /scripts/src/machine.lua | |
parent | 3776f3d0a8546fdfba045ce599e98f956b43eb6b (diff) |
-39in1: Split Intel XScale PXA255 peripherals into a separate device. [Ryan Holtz]
note: will apply this change to any drivers using copy/pasted PXA255 code tomorrow.
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 204972c198e..15eae3e6f12 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2256,6 +2256,19 @@ end --------------------------------------------------- -- +--@src/devices/machine/pla.h,MACHINES["PXA255"] = true +--------------------------------------------------- + +if (MACHINES["PXA255"]~=null) then + files { + MAME_DIR .. "src/devices/machine/pxa255.cpp", + MAME_DIR .. "src/devices/machine/pxa255.h", + MAME_DIR .. "src/devices/machine/pxa255defs.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/r10696.h,MACHINES["R10696"] = true --------------------------------------------------- |