diff options
author | 2019-05-29 15:56:13 +1000 | |
---|---|---|
committer | 2019-05-29 15:56:13 +1000 | |
commit | f7189bfb0e4bd39156c9bd304b1abca7b8793666 (patch) | |
tree | cc7d11cb39e2c4b0b4ce9c92d843577c6b72482e /docs/release/scripts/src/machine.lua | |
parent | 5b1209924a08a10c8ca91ab84fa85f325785be11 (diff) |
0.210 Release filestag210
Diffstat (limited to 'docs/release/scripts/src/machine.lua')
-rw-r--r-- | docs/release/scripts/src/machine.lua | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/docs/release/scripts/src/machine.lua b/docs/release/scripts/src/machine.lua index fd6fb511f39..c2ee8b80974 100644 --- a/docs/release/scripts/src/machine.lua +++ b/docs/release/scripts/src/machine.lua @@ -179,6 +179,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/2812fifo.h,MACHINES["2812FIFO"] = true +--------------------------------------------------- + +if (MACHINES["2812FIFO"]~=null) then + files { + MAME_DIR .. "src/devices/machine/2812fifo.cpp", + MAME_DIR .. "src/devices/machine/2812fifo.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/6522via.h,MACHINES["6522VIA"] = true --------------------------------------------------- @@ -925,6 +937,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ds1994.h,MACHINES["DS1994"] = true +--------------------------------------------------- + +if (MACHINES["DS1994"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ds1994.cpp", + MAME_DIR .. "src/devices/machine/ds1994.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ds2401.h,MACHINES["DS2401"] = true --------------------------------------------------- @@ -1207,6 +1231,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/i82355.h,MACHINES["I82355"] = true +--------------------------------------------------- + +if (MACHINES["I82355"]~=null) then + files { + MAME_DIR .. "src/devices/machine/i82355.cpp", + MAME_DIR .. "src/devices/machine/i82355.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/i8243.h,MACHINES["I8243"] = true --------------------------------------------------- @@ -2649,6 +2685,8 @@ if (MACHINES["SPG2XX"]~=null) then MAME_DIR .. "src/devices/machine/spg110_video.h", MAME_DIR .. "src/devices/machine/sunplus_gcm394.cpp", MAME_DIR .. "src/devices/machine/sunplus_gcm394.h", + MAME_DIR .. "src/devices/machine/sunplus_gcm394_video.cpp", + MAME_DIR .. "src/devices/machine/sunplus_gcm394_video.h", } end @@ -3873,6 +3911,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/aic565.h,MACHINES["AIC565"] = true +--------------------------------------------------- + +if (MACHINES["AIC565"]~=null) then + files { + MAME_DIR .. "src/devices/machine/aic565.cpp", + MAME_DIR .. "src/devices/machine/aic565.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/aic6250.h,MACHINES["AIC6250"] = true --------------------------------------------------- |