diff options
author | 2017-01-27 23:14:12 +1100 | |
---|---|---|
committer | 2017-01-27 23:14:12 +1100 | |
commit | 26cd861a9385b035d3227fd8cd71cdd9aa0b5181 (patch) | |
tree | 5c847a0fe396f241e42eedfa93ba23a654e934ad /docs/release/scripts/src/machine.lua | |
parent | a69112f29d7f574b50c048d8c0861da7fdff444d (diff) |
Added remaining CPS-2 games from mame++.
Diffstat (limited to 'docs/release/scripts/src/machine.lua')
-rw-r--r-- | docs/release/scripts/src/machine.lua | 53 |
1 files changed, 51 insertions, 2 deletions
diff --git a/docs/release/scripts/src/machine.lua b/docs/release/scripts/src/machine.lua index 01808d48c78..d133e2efe42 100644 --- a/docs/release/scripts/src/machine.lua +++ b/docs/release/scripts/src/machine.lua @@ -236,6 +236,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/68153bim.h,MACHINES["BIM68153"] = true +--------------------------------------------------- + +if (MACHINES["BIM68153"]~=null) then + files { + MAME_DIR .. "src/devices/machine/68153bim.cpp", + MAME_DIR .. "src/devices/machine/68153bim.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/68230pit.h,MACHINES["PIT68230"] = true --------------------------------------------------- @@ -248,10 +260,10 @@ end --------------------------------------------------- -- ---@src/devices/machine/68561mpcc.h,MACHINES += 68561MPCC +--@src/devices/machine/68561mpcc.h,MACHINES["MPCC68561"] = true --------------------------------------------------- -if (MACHINES["68561MPCC"]~=null) then +if (MACHINES["MPCC68561"]~=null) then files { MAME_DIR .. "src/devices/machine/68561mpcc.cpp", MAME_DIR .. "src/devices/machine/68561mpcc.h", @@ -357,6 +369,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/74157.h,MACHINES["TTL74157"] = true +--------------------------------------------------- + +if (MACHINES["TTL74157"]~=null) then + files { + MAME_DIR .. "src/devices/machine/74157.cpp", + MAME_DIR .. "src/devices/machine/74157.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/74161.h,MACHINES["TTL74161"] = true --------------------------------------------------- @@ -659,6 +683,19 @@ end --------------------------------------------------- -- +--@src/devices/machine/cdp1879.h,MACHINES["CDP1879"] = true +--------------------------------------------------- + +if (MACHINES["CDP1879"]~=null) then + files { + MAME_DIR .. "src/devices/machine/cdp1879.cpp", + MAME_DIR .. "src/devices/machine/cdp1879.h", + } +end + + +--------------------------------------------------- +-- --@src/devices/machine/com8116.h,MACHINES["COM8116"] = true --------------------------------------------------- @@ -1905,6 +1942,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/phi.h,MACHINES["PHI"] = true +--------------------------------------------------- + +if (MACHINES["PHI"]~=null) then + files { + MAME_DIR .. "src/devices/machine/phi.cpp", + MAME_DIR .. "src/devices/machine/phi.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/pic8259.h,MACHINES["PIC8259"] = true --------------------------------------------------- |