diff options
author | 2015-05-31 23:34:31 +0200 | |
---|---|---|
committer | 2015-06-01 00:54:45 +0200 | |
commit | 872ca80ac52c1bcc47cf5b0b087ccdc891496851 (patch) | |
tree | c9cff06dffd50a52928f53c8c1d0d9dbddfc1eae /scripts/src/machine.lua | |
parent | 7500669a194853266769f1cad42f7c9acf257e60 (diff) |
Converted netlist into a library. Moved most code from nl_convert.h to
nl_convert.c. Targets using netlist must now specify this explicitly
with MACHINES["NETLIST"] = true
Added subtarget "nl" which only contains games with netlist elements.
(nw)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 528cebbd3d2..67d18e7a44e 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2662,3 +2662,14 @@ if (MACHINES["PCI9050"]~=null) then } end +--------------------------------------------------- +-- +--@src/emu/machine/netlist.h,MACHINES += NETLIST +--------------------------------------------------- + +if (MACHINES["NETLIST"]~=null) then + files { + MAME_DIR .. "src/emu/machine/netlist.c", + MAME_DIR .. "src/emu/machine/netlist.h", + } +end |