diff options
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 --------------------------------------------------- |