We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90b61d3 commit d9b8ef5Copy full SHA for d9b8ef5
vpr/src/base/netlist_writer.cpp
@@ -788,6 +788,11 @@ class Assignment {
788
void print_verilog(std::ostream& os, std::string indent) {
789
os << indent << "assign " << escape_verilog_identifier(lval_) << " = " << escape_verilog_identifier(rval_) << ";\n";
790
}
791
+
792
+ void print_merged_verilog(std::ostream& os, std::string indent) {
793
+ os << indent << "assign " << lval_ << " = " << rval_ << ";\n";
794
+ }
795
796
void print_blif(std::ostream& os, std::string indent) {
797
os << indent << ".names " << rval_ << " " << lval_ << "\n";
798
os << indent << "1 1\n";
0 commit comments