diff options
author | 2022-06-28 14:41:16 -0400 | |
---|---|---|
committer | 2022-06-28 14:41:16 -0400 | |
commit | 21efb0e47cebcf7d175a79bcf6eb700d484e0d32 (patch) | |
tree | d520ea57dd062608964aa6e028c227bdfd88c2e0 /scripts/src/machine.lua | |
parent | f37e69828cdd65f21429ceebbd67c372e22589a9 (diff) |
Start moving devices out of src/mame/shared to more appropriate places
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 60fd77428dd..3ba68547c83 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -5020,6 +5020,28 @@ end --------------------------------------------------- -- +--@src/devices/machine/bacta_datalogger.h,MACHINES["BACTA_DATALOGGER"] = true +--------------------------------------------------- +if (MACHINES["BACTA_DATALOGGER"]~=null) then + files { + MAME_DIR .. "src/devices/machine/bacta_datalogger.cpp", + MAME_DIR .. "src/devices/machine/bacta_datalogger.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/nmk112.h,MACHINES["NMK112"] = true +--------------------------------------------------- +if (MACHINES["NMK112"]~=null) then + files { + MAME_DIR .. "src/devices/machine/nmk112.cpp", + MAME_DIR .. "src/devices/machine/nmk112.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/saa7191.h,MACHINES["SAA7191"] = true --------------------------------------------------- if (MACHINES["SAA7191"]~=null) then |