diff options
author | 2024-02-16 18:27:54 +0000 | |
---|---|---|
committer | 2024-02-16 18:29:51 +0000 | |
commit | ea22a3567f9f1f903f0c4fca839169a243dbf8e3 (patch) | |
tree | f04385d8fe9f2e7862dc7b00cf4c721441ce0d78 /scripts/src/machine.lua | |
parent | 300dcfaf79d0a7e12c8610d3f922df954f1f82c6 (diff) |
machine/saa5070: New SAA5070 Viewdata Input/Output Peripheral (VIOP) device.
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index a0e4792a5fd..f1869389ae2 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3311,6 +3311,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/saa5070.h,MACHINES["SAA5070"] = true +--------------------------------------------------- + +if (MACHINES["SAA5070"]~=null) then + files { + MAME_DIR .. "src/devices/machine/saa5070.cpp", + MAME_DIR .. "src/devices/machine/saa5070.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/scc66470.h,MACHINES["SCC66470"] = true --------------------------------------------------- if (MACHINES["SCC66470"]~=null) then |