blob: b3d1c7a48173cb8528f7304163b4b85d4fb21ee9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
###########################################################################
#
# netlist.mak
#
# Rules for building netlist core and devices
#
# Copyright Nicola Salmoria and the MAME Team.
# Visit http://mamedev.org for licensing and usage restrictions.
#
###########################################################################
NETLISTSRC = $(EMUSRC)/netlist
NETLISTOBJ = $(EMUOBJ)/netlist
#-------------------------------------------------
# Netlist dirs and files
#-------------------------------------------------
OBJDIRS += \
$(NETLISTOBJ) \
$(NETLISTOBJ)/devices \
$(NETLISTOBJ)/analog \
NETLISTOBJS+= \
$(NETLISTOBJ)/nl_base.o \
$(NETLISTOBJ)/nl_parser.o \
$(NETLISTOBJ)/nl_setup.o \
$(NETLISTOBJ)/nl_factory.o \
$(NETLISTOBJ)/pstring.o \
$(NETLISTOBJ)/pstate.o \
$(NETLISTOBJ)/analog/nld_bjt.o \
$(NETLISTOBJ)/analog/nld_fourterm.o \
$(NETLISTOBJ)/analog/nld_solver.o \
$(NETLISTOBJ)/analog/nld_switches.o \
$(NETLISTOBJ)/analog/nld_twoterm.o \
$(NETLISTOBJ)/analog/nld_opamps.o \
$(NETLISTOBJ)/devices/nld_4020.o \
$(NETLISTOBJ)/devices/nld_4066.o \
$(NETLISTOBJ)/devices/nld_7400.o \
$(NETLISTOBJ)/devices/nld_7402.o \
$(NETLISTOBJ)/devices/nld_7404.o \
$(NETLISTOBJ)/devices/nld_7408.o \
$(NETLISTOBJ)/devices/nld_7410.o \
$(NETLISTOBJ)/devices/nld_7411.o \
$(NETLISTOBJ)/devices/nld_7420.o \
$(NETLISTOBJ)/devices/nld_7425.o \
$(NETLISTOBJ)/devices/nld_7427.o \
$(NETLISTOBJ)/devices/nld_7430.o \
$(NETLISTOBJ)/devices/nld_7432.o \
$(NETLISTOBJ)/devices/nld_7437.o \
$(NETLISTOBJ)/devices/nld_7448.o \
$(NETLISTOBJ)/devices/nld_7450.o \
$(NETLISTOBJ)/devices/nld_7474.o \
$(NETLISTOBJ)/devices/nld_7483.o \
$(NETLISTOBJ)/devices/nld_7486.o \
$(NETLISTOBJ)/devices/nld_7490.o \
$(NETLISTOBJ)/devices/nld_7493.o \
$(NETLISTOBJ)/devices/nld_74107.o \
$(NETLISTOBJ)/devices/nld_74123.o \
$(NETLISTOBJ)/devices/nld_74153.o \
$(NETLISTOBJ)/devices/nld_74ls629.o \
$(NETLISTOBJ)/devices/nld_9316.o \
$(NETLISTOBJ)/devices/nld_ne555.o \
$(NETLISTOBJ)/devices/nld_r2r_dac.o \
$(NETLISTOBJ)/devices/nld_legacy.o \
$(NETLISTOBJ)/devices/net_lib.o \
$(NETLISTOBJ)/devices/nld_log.o \
$(NETLISTOBJ)/devices/nld_system.o \
|