summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/devices/nld_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/devices/nld_log.h')
-rw-r--r--src/lib/netlist/devices/nld_log.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/lib/netlist/devices/nld_log.h b/src/lib/netlist/devices/nld_log.h
deleted file mode 100644
index 13c71ea7257..00000000000
--- a/src/lib/netlist/devices/nld_log.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// license:GPL-2.0+
-// copyright-holders:Couriersud
-/*
- * nld_log.h
- *
- * Devices supporting analysis and logging
- *
- * nld_log:
- *
- * +---------+
- * | ++ |
- * I | | ==> Log to file "netlist_" + name() + ".log"
- * | |
- * +---------+
- *
- */
-
-#ifndef NLD_LOG_H_
-#define NLD_LOG_H_
-
-#include "netlist/nl_setup.h"
-
-#define LOG(name, cI) \
- NET_REGISTER_DEV(LOG, name) \
- NET_CONNECT(name, I, cI)
-
-#define LOGD(name, cI, cI2) \
- NET_REGISTER_DEV(LOGD, name) \
- NET_CONNECT(name, I, cI) \
- NET_CONNECT(name, I2, cI2)
-
-#endif /* NLD_LOG_H_ */