summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author Couriersud <couriersud@users.noreply.github.com>2014-03-23 16:52:07 +0000
committer Couriersud <couriersud@users.noreply.github.com>2014-03-23 16:52:07 +0000
commit61300bfcb8063a6e051cf66a6bf1857c41e6838f (patch)
treea5b6328f3441eec5cfc949d102ff33d1fa7f5639 /src/tools
parent72292ef70ad882d18aa22296500bc881ffea5727 (diff)
netlist: Nice performance increase by removing logic terminals from net if they are inactive. Introduced a linked-list class to abstract linked-lists. Fixed deactivating devices. You have to enable this because it is not guaranteed to be timing-exact. [Couriersud]
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/nltool.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tools/nltool.c b/src/tools/nltool.c
index 33bceffb6d4..5c86cace00a 100644
--- a/src/tools/nltool.c
+++ b/src/tools/nltool.c
@@ -57,6 +57,13 @@ void free_file_line( void *memory, const char *file, int line )
osd_free( memory );
}
+void CLIB_DECL logerror(const char *format, ...)
+{
+ va_list arg;
+ va_start(arg, format);
+ vprintf(format, arg);
+ va_end(arg);
+}
struct options_entry oplist[] =
{