summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/prg/nltool.cpp
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-05-05 23:54:30 +0200
committer couriersud <couriersud@gmx.org>2020-05-05 23:54:30 +0200
commit12a3abdb2837c18aab671c7e75ebd5d2fb1f775a (patch)
tree73a71507d1744f49c4e4dbb7395a63e168f95019 /src/lib/netlist/prg/nltool.cpp
parent0044c33b61cde9fce65ea07651364591ad86be7b (diff)
netlist: nlwav - new functionality. [Couriersud]
nlwav now supports 16 and 32 bit integer format (wav16s, wav32s) as well as 32 bit float format (wav32f). The "wav" format is no longer supported. Added support for high and low pass filtering the wav output. Dynamic volume adjustment (use "-a 0") --hpboost can suppress spikes at the beginning of the file (<10ms) The addition of the float format simplifies debugging significantly since it covers the whole dynamic format. Added nlwav to the local VS 2019 build.
Diffstat (limited to 'src/lib/netlist/prg/nltool.cpp')
-rw-r--r--src/lib/netlist/prg/nltool.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lib/netlist/prg/nltool.cpp b/src/lib/netlist/prg/nltool.cpp
index ca05dc689b7..f2d18092629 100644
--- a/src/lib/netlist/prg/nltool.cpp
+++ b/src/lib/netlist/prg/nltool.cpp
@@ -1195,14 +1195,9 @@ int tool_app_t::execute()
return 1;
}
}
- catch (netlist::nl_exception &e)
- {
- perr("Netlist exception caught: {}\n", e.text());
- return 2;
- }
catch (plib::pexception &e)
{
- perr("plib exception caught: {}\n", e.text());
+ perr("Exception caught: {}\n", e.text());
return 2;
}