diff options
Diffstat (limited to 'docs/release/scripts/src/machine.lua')
-rw-r--r-- | docs/release/scripts/src/machine.lua | 79 |
1 files changed, 73 insertions, 6 deletions
diff --git a/docs/release/scripts/src/machine.lua b/docs/release/scripts/src/machine.lua index 49c9faec62c..8f921b0aada 100644 --- a/docs/release/scripts/src/machine.lua +++ b/docs/release/scripts/src/machine.lua @@ -94,6 +94,18 @@ if (MACHINES["AKIKO"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/machine/am2901b.h,MACHINES["AM2901B"] = true +--------------------------------------------------- + +if (MACHINES["AM2901B"]~=null) then + files { + MAME_DIR .. "src/devices/machine/am2901b.cpp", + MAME_DIR .. "src/devices/machine/am2901b.h", + } +end + -------------------------------------------------- -- --@src/devices/machine/arm_iomd.h,MACHINES["ARM_IOMD"] = true @@ -2769,7 +2781,7 @@ end --------------------------------------------------- -- ---@src/devices/machine/scnxx562.h,MACHINES["SCN_PCI"] = true +--@src/devices/machine/scn_pci.h,MACHINES["SCN_PCI"] = true --------------------------------------------------- if (MACHINES["SCN_PCI"]~=null) then @@ -2867,7 +2879,7 @@ end -- --@src/devices/machine/spg2xx.h,MACHINES["SPG2XX"] = true --@src/devices/machine/spg110.h,MACHINES["SPG2XX"] = true ---@src/devices/machine/sunplus_gcm394.h,MACHINES["SPG2XX"] = true +--@src/devices/machine/generalplus_gpl16250soc.h,MACHINES["SPG2XX"] = true --------------------------------------------------- if (MACHINES["SPG2XX"]~=null) then @@ -2886,10 +2898,10 @@ if (MACHINES["SPG2XX"]~=null) then MAME_DIR .. "src/devices/machine/spg110.h", MAME_DIR .. "src/devices/machine/spg110_video.cpp", 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", + MAME_DIR .. "src/devices/machine/generalplus_gpl16250soc.cpp", + MAME_DIR .. "src/devices/machine/generalplus_gpl16250soc.h", + MAME_DIR .. "src/devices/machine/generalplus_gpl16250soc_video.cpp", + MAME_DIR .. "src/devices/machine/generalplus_gpl16250soc_video.h", } end @@ -4340,3 +4352,58 @@ if (MACHINES["CXD1185"]~=null) then MAME_DIR .. "src/devices/machine/cxd1185.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/applefdc.h,MACHINES["APPLE_FDINTF"] = true +--------------------------------------------------- +if (MACHINES["APPLE_FDINTF"]~=null) then + files { + MAME_DIR .. "src/devices/machine/applefdintf.cpp", + MAME_DIR .. "src/devices/machine/applefdintf.h", + } +end + +--------------------------------------------------- + -- + --@src/devices/machine/iwm.h,MACHINES["IWM"] = true + --------------------------------------------------- + if (MACHINES["IWM"]~=null) then + files { + MAME_DIR .. "src/devices/machine/iwm.cpp", + MAME_DIR .. "src/devices/machine/iwm.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/swim1.h,MACHINES["SWIM1"] = true +--------------------------------------------------- +if (MACHINES["SWIM1"]~=null) then + files { + MAME_DIR .. "src/devices/machine/swim1.cpp", + MAME_DIR .. "src/devices/machine/swim1.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/swim2.h,MACHINES["SWIM2"] = true +--------------------------------------------------- +if (MACHINES["SWIM2"]~=null) then + files { + MAME_DIR .. "src/devices/machine/swim2.cpp", + MAME_DIR .. "src/devices/machine/swim2.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/swim3.h,MACHINES["SWIM3"] = true +--------------------------------------------------- +if (MACHINES["SWIM3"]~=null) then + files { + MAME_DIR .. "src/devices/machine/swim3.cpp", + MAME_DIR .. "src/devices/machine/swim3.h", + } +end
\ No newline at end of file |