diff options
author | 2018-09-20 18:08:59 +0700 | |
---|---|---|
committer | 2018-09-20 18:08:59 +0700 | |
commit | 895ffe0763a713fe644c53afe573e9839ee822a1 (patch) | |
tree | ea2fce92c128113a39eeee2c9ddb70650917e4cb /scripts/src | |
parent | 234a7768328a8fc2bbc857f63f157df8bc24a208 (diff) |
jazz: new skeleton driver (nw)
A skeleton for the Microsoft Jazz architecture, which was implemented in the MIPS Magnum 4000, Olivetti M700-10 and was the base/origin of several other MIPS ARC systems.
* added skeleton Inmos G300/G332/G364 device
* added skeleton NatSemi DP83932C SONIC device
* added skeleton MCT-ADR device
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/machine.lua | 12 | ||||
-rw-r--r-- | scripts/src/video.lua | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 7c1cc8e66ca..cd141b26cb3 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3180,6 +3180,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/dp83932c.h,MACHINES["DP83932C"] = true +--------------------------------------------------- + +if (MACHINES["DP83932C"]~=null) then + files { + MAME_DIR .. "src/devices/machine/dp83932c.cpp", + MAME_DIR .. "src/devices/machine/dp83932c.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/pc_lpt.h,MACHINES["PC_LPT"] = true --------------------------------------------------- diff --git a/scripts/src/video.lua b/scripts/src/video.lua index c014a026fad..a5b47457dd3 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -497,6 +497,18 @@ end -------------------------------------------------- -- +--@src/devices/video/ims_cvc.h,VIDEOS["IMS_CVC"] = true +-------------------------------------------------- + +if (VIDEOS["IMS_CVC"]~=null) then + files { + MAME_DIR .. "src/devices/video/ims_cvc.cpp", + MAME_DIR .. "src/devices/video/ims_cvc.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/m50458.h,VIDEOS["M50458"] = true -------------------------------------------------- |