aboutsummaryrefslogtreecommitdiffstats
path: root/backends/cxxrtl/cxxrtl.h
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2020-06-07 20:32:00 +0000
committerGitHub <noreply@github.com>2020-06-07 20:32:00 +0000
commit210d129d9ab0f13db179ca556a414baa119b716a (patch)
tree1a3b138005443ed04bf45612510ef4ab5ea2254e /backends/cxxrtl/cxxrtl.h
parent534be6670d765fd73ff222fca1899b2b83670d5f (diff)
parentff5500f11a4512f9d4dc86f78f761b195febcaf5 (diff)
downloadyosys-210d129d9ab0f13db179ca556a414baa119b716a.tar.gz
yosys-210d129d9ab0f13db179ca556a414baa119b716a.tar.bz2
yosys-210d129d9ab0f13db179ca556a414baa119b716a.zip
Merge pull request #2116 from whitequark/cxxrtl-vcd
cxxrtl: add a VCD writer using debug information
Diffstat (limited to 'backends/cxxrtl/cxxrtl.h')
-rw-r--r--backends/cxxrtl/cxxrtl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/cxxrtl/cxxrtl.h b/backends/cxxrtl/cxxrtl.h
index aba2c77a1..5f74899fd 100644
--- a/backends/cxxrtl/cxxrtl.h
+++ b/backends/cxxrtl/cxxrtl.h
@@ -728,6 +728,8 @@ struct debug_item : ::cxxrtl_object {
MEMORY = CXXRTL_MEMORY,
};
+ debug_item(const ::cxxrtl_object &object) : cxxrtl_object(object) {}
+
template<size_t Bits>
debug_item(value<Bits> &item) {
static_assert(sizeof(item) == value<Bits>::chunks * sizeof(chunk_t),