diff options
author | 2020-10-05 16:02:23 +0700 | |
---|---|---|
committer | 2020-10-05 16:02:23 +0700 | |
commit | a89f9b274e9968aab7fde58110c3cb72378c4843 (patch) | |
tree | ab00e2854bc8ba0ee6219fdef39183476b8e08ce /scripts | |
parent | 3771e381932c3a145937fea13d8756ac064ac434 (diff) |
ns32081: new device
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/machine.lua | 11 | ||||
-rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index ac3cf2b31a1..185b1a8164b 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4557,3 +4557,14 @@ if (MACHINES["BL_HANDHELDS_MENUCONTROL"]~=null) then MAME_DIR .. "src/devices/machine/bl_handhelds_menucontrol.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/ns32081.h,MACHINES["NS32081"] = true +--------------------------------------------------- +if (MACHINES["NS32081"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ns32081.cpp", + MAME_DIR .. "src/devices/machine/ns32081.h", + } +end diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 6d6e9a42dff..533d5cf0712 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -780,6 +780,7 @@ MACHINES["EDLC"] = true MACHINES["WTL3132"] = true MACHINES["CXD1185"] = true MACHINES["BL_HANDHELDS_MENUCONTROL"] = true +MACHINES["NS32081"] = true -------------------------------------------------- -- specify available bus cores |