diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-01-29 00:59:28 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-01-29 00:59:28 +0100 |
commit | 375c4dddc19c7029b82d9d4482f32938b7f6cd85 (patch) | |
tree | a4be8f310eb12acd4adffa4075ada6c3ff4d7c89 /frontends/ast/genrtlil.cc | |
parent | a86f33653d0b1b9ba09a118a29a2baf3bb0520a3 (diff) | |
download | yosys-375c4dddc19c7029b82d9d4482f32938b7f6cd85.tar.gz yosys-375c4dddc19c7029b82d9d4482f32938b7f6cd85.tar.bz2 yosys-375c4dddc19c7029b82d9d4482f32938b7f6cd85.zip |
Added read_verilog -icells option
Diffstat (limited to 'frontends/ast/genrtlil.cc')
-rw-r--r-- | frontends/ast/genrtlil.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc index 83a5c7506..6001e278a 100644 --- a/frontends/ast/genrtlil.cc +++ b/frontends/ast/genrtlil.cc @@ -1334,6 +1334,8 @@ RTLIL::SigSpec AstNode::genRTLIL(int width_hint, bool sign_hint) AstNode *child = *it; if (child->type == AST_CELLTYPE) { cell->type = child->str; + if (flag_icells && cell->type.substr(0, 2) == "\\$") + cell->type = cell->type.substr(1); continue; } if (child->type == AST_PARASET) { |