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 1965f2d commit 9766400Copy full SHA for 9766400
vpr/src/base/netlist_writer.cpp
@@ -791,6 +791,11 @@ class Assignment {
791
void print_verilog(std::ostream& os, std::string indent) {
792
os << indent << "assign " << escape_verilog_identifier(lval_) << " = " << escape_verilog_identifier(rval_) << ";\n";
793
}
794
+
795
+ void print_merged_verilog(std::ostream& os, std::string indent) {
796
+ os << indent << "assign " << lval_ << " = " << rval_ << ";\n";
797
+ }
798
799
void print_blif(std::ostream& os, std::string indent) {
800
os << indent << ".names " << rval_ << " " << lval_ << "\n";
801
os << indent << "1 1\n";
0 commit comments