diff options
author | 2020-04-18 16:38:23 +0200 | |
---|---|---|
committer | 2020-04-18 16:38:55 +0200 | |
commit | 16bde11adb749504f0ae78d42902b5f12126920f (patch) | |
tree | 4bb6fed5629546d6262e6b7d82e1ea73c613b454 /src/lib/netlist/documentation | |
parent | 2ce8b83fea37d3b199e3e0f7f3019a59ce01d109 (diff) |
netlist: nltool usage and static compile changes. [Couriersud]
This commit simplifies the creation of static solvers. For this to
happen the following changes were made:
- nltool does no longer support the "-f netlist_file.cpp" option.
All parts of netlist which used the option now expect the file
to be specified after all other options.
Before: nltool -t 10 -f somenetlist.cpp
Now : nltool -t 10 somenetlist.cpp
- The static compile command now supports an "--output" option
to specify the file to be created and accepts multiple input
files. To be create the static solver file for MAME use the
script provided or:
./nltool --cmd static
--output=src/lib/netlist/generated/static_solvers.cpp
src/mame/audio/nl_*.cpp src/mame/machine/nl_*.cpp
- Updated documentation and examples provided by nltool --help
Diffstat (limited to 'src/lib/netlist/documentation')
-rw-r--r-- | src/lib/netlist/documentation/primer_1.dox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/documentation/primer_1.dox.h b/src/lib/netlist/documentation/primer_1.dox.h index 33f0bf64759..9fd0d407a86 100644 --- a/src/lib/netlist/documentation/primer_1.dox.h +++ b/src/lib/netlist/documentation/primer_1.dox.h @@ -37,7 +37,7 @@ That's something we will cover later. Now, to test this, run the following: ~~~ -> nltool --cmd=run -f test1.cpp -t 0.05 -l O -l I +> nltool --cmd=run -t 0.05 -l O -l I test1.cpp ~~~ This will run the circuit for 50 ms and log input "I" to file log_I.log and |