diff options
author | 2020-03-06 14:35:29 -0500 | |
---|---|---|
committer | 2020-03-06 14:37:35 -0500 | |
commit | 415128cae43090e4a5f7cae21eec2f049301886e (patch) | |
tree | 244688fa588cb1791d0c8dd92196ed82cabba594 /scripts/src/machine.lua | |
parent | e81e74777d865661c11c6170cf47e5e766531edd (diff) |
New and completely rewritten emulation of SCN2651 PCI, SCN2661 EPCI & SCN2641 ACI
This is far more thorough and accurate than the preexisting MC2661 device emulation. Synchronous modes have been implemented but not tested.
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 9dfc6e94627..dd2bf64ce29 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2721,6 +2721,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/scnxx562.h,MACHINES["SCN_PCI"] = true +--------------------------------------------------- + +if (MACHINES["SCN_PCI"]~=null) then + files { + MAME_DIR .. "src/devices/machine/scn_pci.cpp", + MAME_DIR .. "src/devices/machine/scn_pci.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/scnxx562.h,MACHINES["DUSCC"] = true --------------------------------------------------- |