diff options
Diffstat (limited to 'docs/release/scripts/src/machine.lua')
-rw-r--r-- | docs/release/scripts/src/machine.lua | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/docs/release/scripts/src/machine.lua b/docs/release/scripts/src/machine.lua index cd9d91c9a9e..66e0d676046 100644 --- a/docs/release/scripts/src/machine.lua +++ b/docs/release/scripts/src/machine.lua @@ -1127,6 +1127,16 @@ if (MACHINES["CXD1095"]~=null) then } end +--@src/devices/machine/dl11.h,MACHINES["DL11"] = true +--------------------------------------------------- + +if (MACHINES["DL11"]~=null) then + files { + MAME_DIR .. "src/devices/machine/dl11.cpp", + MAME_DIR .. "src/devices/machine/dl11.h", + } +end + --@src/devices/machine/ds1204.h,MACHINES["DS1204"] = true --------------------------------------------------- @@ -1417,7 +1427,9 @@ end --------------------------------------------------- -- ---@src/devices/machine/gt913.h,MACHINES["GT913"] = true +--@src/devices/machine/gt913_io.h,MACHINES["GT913"] = true +--@src/devices/machine/gt913_kbd.h,MACHINES["GT913"] = true +--@src/devices/machine/gt913_snd.h,MACHINES["GT913"] = true --------------------------------------------------- if (MACHINES["GT913"]~=null) then @@ -4869,3 +4881,25 @@ if (MACHINES["NS32082"]~=null) then MAME_DIR .. "src/devices/machine/ns32082.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/tsconfdma.h,MACHINES["TSCONF_DMA"] = true +--------------------------------------------------- +if (MACHINES["TSCONF_DMA"]~=null) then + files { + MAME_DIR .. "src/devices/machine/tsconfdma.cpp", + MAME_DIR .. "src/devices/machine/tsconfdma.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/glukrs.h,MACHINES["GLUKRS"] = true +--------------------------------------------------- +if (MACHINES["GLUKRS"]~=null) then + files { + MAME_DIR .. "src/devices/machine/glukrs.cpp", + MAME_DIR .. "src/devices/machine/glukrs.h", + } +end |