aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/log.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2017-02-11 11:08:12 +0100
committerClifford Wolf <clifford@clifford.at>2017-02-11 11:08:36 +0100
commit63dfdb5d7fcfb9c0ec2a5352a34cf9119e28766a (patch)
tree322d08190efd3c63731e896d4292c0b296b3f5cb /kernel/log.h
parent95dae6d416bd9e9ca08fea9ab354b6de7e433fdb (diff)
downloadyosys-63dfdb5d7fcfb9c0ec2a5352a34cf9119e28766a.tar.gz
yosys-63dfdb5d7fcfb9c0ec2a5352a34cf9119e28766a.tar.bz2
yosys-63dfdb5d7fcfb9c0ec2a5352a34cf9119e28766a.zip
Add log_wire() API
Diffstat (limited to 'kernel/log.h')
-rw-r--r--kernel/log.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/log.h b/kernel/log.h
index 5b1729eb1..34b8ac3a5 100644
--- a/kernel/log.h
+++ b/kernel/log.h
@@ -90,6 +90,7 @@ template<typename T> static inline const char *log_id(T *obj) {
void log_module(RTLIL::Module *module, std::string indent = "");
void log_cell(RTLIL::Cell *cell, std::string indent = "");
+void log_wire(RTLIL::Wire *wire, std::string indent = "");
#ifndef NDEBUG
static inline void log_assert_worker(bool cond, const char *expr, const char *file, int line) {