diff options
author | Andrew Zonenberg <azonenberg@drawersteak.com> | 2017-08-30 18:16:15 -0700 |
---|---|---|
committer | Andrew Zonenberg <azonenberg@drawersteak.com> | 2017-08-30 18:16:15 -0700 |
commit | 16043b79b6c42b1d25604ed40221a5479e8811c0 (patch) | |
tree | 9bd2839064c2e2a9d6b6c9de71918918c3b65ee0 /kernel/rtlil.cc | |
parent | ed1e3ed39bf15ff9276587325920a329321bdac2 (diff) | |
parent | 06754108fc3cc3d78e7b86d7093da110cc716224 (diff) | |
download | yosys-16043b79b6c42b1d25604ed40221a5479e8811c0.tar.gz yosys-16043b79b6c42b1d25604ed40221a5479e8811c0.tar.bz2 yosys-16043b79b6c42b1d25604ed40221a5479e8811c0.zip |
Merge branch 'counter-extraction' of github.com:azonenberg/yosys into counter-extraction
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 4427303cc..f3522e30b 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -234,6 +234,22 @@ pool<string> RTLIL::AttrObject::get_strpool_attribute(RTLIL::IdString id) const return data; } +void RTLIL::AttrObject::set_src_attribute(const std::string &src) +{ + if (src.empty()) + attributes.erase("\\src"); + else + attributes["\\src"] = src; +} + +std::string RTLIL::AttrObject::get_src_attribute() const +{ + std::string src; + if (attributes.count("\\src")) + src = attributes.at("\\src").decode_string(); + return src; +} + bool RTLIL::Selection::selected_module(RTLIL::IdString mod_name) const { if (full_selection) |