diff options
author | 2016-04-29 10:16:04 +0200 | |
---|---|---|
committer | 2016-04-29 10:16:04 +0200 | |
commit | e044d565002ad74e1afddc88ba19203aebf23fcc (patch) | |
tree | 16afe92274048bd70880b7e4fbff46ef0c70a13c /scripts/src/machine.lua | |
parent | 047e3d1329ab14798141a70b1b24c530c365a782 (diff) |
Fixed build atom driver (nw)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 8ff0707a0f2..6e97e4a1423 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2286,8 +2286,6 @@ if (MACHINES["UPD765"]~=null) then files { MAME_DIR .. "src/devices/machine/upd765.cpp", MAME_DIR .. "src/devices/machine/upd765.h", - MAME_DIR .. "src/devices/machine/fdc_pll.cpp", - MAME_DIR .. "src/devices/machine/fdc_pll.h", } end @@ -2312,8 +2310,6 @@ if (MACHINES["WD_FDC"]~=null) then files { MAME_DIR .. "src/devices/machine/wd_fdc.cpp", MAME_DIR .. "src/devices/machine/wd_fdc.h", - MAME_DIR .. "src/devices/machine/fdc_pll.cpp", - MAME_DIR .. "src/devices/machine/fdc_pll.h", } end @@ -2810,3 +2806,16 @@ if (MACHINES["GEN_LATCH"]~=null) then MAME_DIR .. "src/devices/machine/gen_latch.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/fdc_pll.h,MACHINES["FDC_PLL"] = true +--------------------------------------------------- + +if (MACHINES["FDC_PLL"]~=null) then + files { + MAME_DIR .. "src/devices/machine/fdc_pll.cpp", + MAME_DIR .. "src/devices/machine/fdc_pll.h", + } +end + |