diff options
author | 2024-03-04 15:35:11 +0000 | |
---|---|---|
committer | 2024-03-04 10:35:11 -0500 | |
commit | 36cf92be3709dec7c5f36a51a9317c0e532e1460 (patch) | |
tree | 0a6374af12a36346381109d2268323ad7a95300e /scripts/src/machine.lua | |
parent | 8b7c42655e4f23690f8f378cf0bf9eb78f5e517e (diff) |
Add support for 1801VP1-128 gate array (MFM codec) (#12089)
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 01d9c14ed3d..30425b67a80 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1940,6 +1940,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/1801vp128.h,MACHINES["K1801VP128"] = true +--------------------------------------------------- + +if (MACHINES["K1801VP128"]~=null) then + files { + MAME_DIR .. "src/devices/machine/1801vp128.cpp", + MAME_DIR .. "src/devices/machine/1801vp128.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/kb3600.h,MACHINES["KB3600"] = true --------------------------------------------------- |