diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 17 | ||||
-rw-r--r-- | scripts/src/formats.lua | 12 | ||||
-rw-r--r-- | scripts/src/video.lua | 12 |
3 files changed, 41 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index df699c95229..213b7d93e76 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -717,6 +717,23 @@ end --------------------------------------------------- -- +--@src/devices/bus/hp_hil/hp_hil.h,BUSES["HPHIL"] = true +--------------------------------------------------- + +if (BUSES["HPHIL"]~=null) then + files { + MAME_DIR .. "src/devices/bus/hp_hil/hp_hil.cpp", + MAME_DIR .. "src/devices/bus/hp_hil/hp_hil.h", + MAME_DIR .. "src/devices/bus/hp_hil/hil_devices.cpp", + MAME_DIR .. "src/devices/bus/hp_hil/hil_devices.h", + MAME_DIR .. "src/devices/bus/hp_hil/hlekbd.cpp", + MAME_DIR .. "src/devices/bus/hp_hil/hlekbd.h", + } +end + + +--------------------------------------------------- +-- --@src/devices/bus/generic/slot.h,BUSES["GENERIC"] = true --------------------------------------------------- diff --git a/scripts/src/formats.lua b/scripts/src/formats.lua index 5216a40332a..81ab80f32be 100644 --- a/scripts/src/formats.lua +++ b/scripts/src/formats.lua @@ -895,6 +895,18 @@ end -------------------------------------------------- -- +--@src/lib/formats/hp_ipc_dsk.h,FORMATS["HP_IPC_DSK"] = true +-------------------------------------------------- + +if (FORMATS["HP_IPC_DSK"]~=null or _OPTIONS["with-tools"]) then + files { + MAME_DIR.. "src/lib/formats/hp_ipc_dsk.cpp", + MAME_DIR.. "src/lib/formats/hp_ipc_dsk.h", + } +end + +-------------------------------------------------- +-- --@src/lib/formats/iq151_dsk.h,FORMATS["IQ151_DSK"] = true -------------------------------------------------- diff --git a/scripts/src/video.lua b/scripts/src/video.lua index 93e8fad6f6d..742a7c7c34f 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -366,6 +366,18 @@ end -------------------------------------------------- -- +--@src/devices/video/hp1ll3.h,VIDEOS["HP1LL3"] = true +-------------------------------------------------- + +if (VIDEOS["HP1LL3"]~=null) then + files { + MAME_DIR .. "src/devices/video/hp1ll3.cpp", + MAME_DIR .. "src/devices/video/hp1ll3.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/huc6202.h,VIDEOS["HUC6202"] = true -------------------------------------------------- |