diff options
author | whitequark <whitequark@whitequark.org> | 2020-06-07 20:32:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 20:32:00 +0000 |
commit | 210d129d9ab0f13db179ca556a414baa119b716a (patch) | |
tree | 1a3b138005443ed04bf45612510ef4ab5ea2254e /backends/cxxrtl/cxxrtl_capi.cc | |
parent | 534be6670d765fd73ff222fca1899b2b83670d5f (diff) | |
parent | ff5500f11a4512f9d4dc86f78f761b195febcaf5 (diff) | |
download | yosys-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_capi.cc')
-rw-r--r-- | backends/cxxrtl/cxxrtl_capi.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/backends/cxxrtl/cxxrtl_capi.cc b/backends/cxxrtl/cxxrtl_capi.cc index 0dcd64041..489d72da5 100644 --- a/backends/cxxrtl/cxxrtl_capi.cc +++ b/backends/cxxrtl/cxxrtl_capi.cc @@ -26,6 +26,11 @@ struct _cxxrtl_handle { cxxrtl::debug_items objects; }; +// Private function for use by other units of the C API. +const cxxrtl::debug_items &cxxrtl_debug_items_from_handle(cxxrtl_handle handle) { + return handle->objects; +} + cxxrtl_handle cxxrtl_create(cxxrtl_toplevel design) { cxxrtl_handle handle = new _cxxrtl_handle; handle->module = std::move(design->module); @@ -49,7 +54,7 @@ cxxrtl_object *cxxrtl_get(cxxrtl_handle handle, const char *name) { } void cxxrtl_enum(cxxrtl_handle handle, void *data, - void (*callback)(void *data, const char *name, struct cxxrtl_object *object)) { + void (*callback)(void *data, const char *name, cxxrtl_object *object)) { for (auto &it : handle->objects) callback(data, it.first.c_str(), static_cast<cxxrtl_object*>(&it.second)); } |