diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/machine.lua | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 6e97e4a1423..49e0eee98ec 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2797,7 +2797,7 @@ end --------------------------------------------------- -- ---@src/devices/machine/gen_latch.h,MACHINES["GEN_LATCH] = true +--@src/devices/machine/gen_latch.h,MACHINES["GEN_LATCH"] = true --------------------------------------------------- if (MACHINES["GEN_LATCH"]~=null) then @@ -2819,3 +2819,15 @@ if (MACHINES["FDC_PLL"]~=null) then } end +--------------------------------------------------- +-- +--@src/devices/machine/watchdog.h,MACHINES["WATCHDOG"] = true +--------------------------------------------------- + +if (MACHINES["WATCHDOG"]~=null) then + files { + MAME_DIR .. "src/devices/machine/watchdog.cpp", + MAME_DIR .. "src/devices/machine/watchdog.h", + } +end + |