mirror of
https://github.com/holub/mame
synced 2025-04-17 05:53:36 +03:00
122 lines
3.0 KiB
Lua
122 lines
3.0 KiB
Lua
-- license:BSD-3-Clause
|
|
-- copyright-holders:MAMEdev Team
|
|
|
|
---------------------------------------------------------------------------
|
|
--
|
|
-- nl.lua
|
|
--
|
|
-- Compiles all drivers using netlist code
|
|
-- Use make SUBTARGET=nl to build
|
|
--
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
--------------------------------------------------
|
|
-- Specify all the CPU cores necessary for the
|
|
-- drivers referenced in nl.lst.
|
|
--------------------------------------------------
|
|
|
|
CPUS["Z80"] = true
|
|
--CPUS["M6502"] = true
|
|
--CPUS["MCS48"] = true
|
|
--CPUS["MCS51"] = true
|
|
--CPUS["M6800"] = true
|
|
--CPUS["M6809"] = true
|
|
--CPUS["M680X0"] = true
|
|
--CPUS["TMS9900"] = true
|
|
--CPUS["COP400"] = true
|
|
|
|
--------------------------------------------------
|
|
-- Specify all the sound cores necessary for the
|
|
-- drivers referenced in nl.lst.
|
|
--------------------------------------------------
|
|
|
|
--SOUNDS["SAMPLES"] = true
|
|
SOUNDS["DAC"] = true
|
|
--SOUNDS["DISCRETE"] = true
|
|
SOUNDS["AY8910"] = true
|
|
--SOUNDS["YM2151"] = true
|
|
--SOUNDS["ASTROCADE"] = true
|
|
--SOUNDS["TMS5220"] = true
|
|
--SOUNDS["OKIM6295"] = true
|
|
--SOUNDS["HC55516"] = true
|
|
--SOUNDS["YM3812"] = true
|
|
--SOUNDS["CEM3394"] = true
|
|
--SOUNDS["VOTRAX"] = true
|
|
|
|
--------------------------------------------------
|
|
-- specify available video cores
|
|
--------------------------------------------------
|
|
|
|
VIDEOS["FIXFREQ"] = true
|
|
|
|
--------------------------------------------------
|
|
-- specify available machine cores
|
|
--------------------------------------------------
|
|
|
|
MACHINES["NETLIST"] = true
|
|
--MACHINES["6821PIA"] = true
|
|
--MACHINES["TTL74148"] = true
|
|
--MACHINES["TTL74153"] = true
|
|
--MACHINES["TTL7474"] = true
|
|
--MACHINES["RIOT6532"] = true
|
|
--MACHINES["PIT8253"] = true
|
|
--MACHINES["Z80CTC"] = true
|
|
--MACHINES["68681"] = true
|
|
--MACHINES["BANKDEV"] = true
|
|
|
|
|
|
--------------------------------------------------
|
|
-- specify available bus cores
|
|
--------------------------------------------------
|
|
|
|
-- not needed by nl.lua but build system wants at least one bus
|
|
BUSES["CENTRONICS"] = true
|
|
|
|
--------------------------------------------------
|
|
-- This is the list of files that are necessary
|
|
-- for building all of the drivers referenced
|
|
-- in nl.lst
|
|
--------------------------------------------------
|
|
|
|
function createProjects_mame_nl(_target, _subtarget)
|
|
project ("mame_netlist")
|
|
targetsubdir(_target .."_" .. _subtarget)
|
|
kind (LIBTYPE)
|
|
uuid (os.uuid("drv-mame-nl"))
|
|
|
|
options {
|
|
"ForceCPP",
|
|
}
|
|
|
|
includedirs {
|
|
MAME_DIR .. "src/osd",
|
|
MAME_DIR .. "src/emu",
|
|
MAME_DIR .. "src/mame",
|
|
MAME_DIR .. "src/lib",
|
|
MAME_DIR .. "src/lib/util",
|
|
MAME_DIR .. "3rdparty",
|
|
MAME_DIR .. "3rdparty/zlib",
|
|
GEN_DIR .. "mame/layout",
|
|
}
|
|
|
|
files{
|
|
MAME_DIR .. "src/mame/drivers/pong.c",
|
|
MAME_DIR .. "src/mame/drivers/nl_pong.c",
|
|
MAME_DIR .. "src/mame/drivers/nl_pongd.c",
|
|
MAME_DIR .. "src/mame/drivers/nl_breakout.c",
|
|
|
|
MAME_DIR .. "src/mame/drivers/1942.c",
|
|
MAME_DIR .. "src/mame/video/1942.c",
|
|
MAME_DIR .. "src/mame/drivers/popeye.c",
|
|
MAME_DIR .. "src/mame/video/popeye.c",
|
|
|
|
}
|
|
end
|
|
|
|
function linkProjects_mame_nl(_target, _subtarget)
|
|
links {
|
|
"mame_netlist",
|
|
}
|
|
end
|