[core] code format
This commit is contained in:
parent
2fee56548b
commit
bcb82d43af
|
@ -33,8 +33,8 @@ void print_verilog_default_net_type_declaration(
|
|||
VTR_ASSERT(true == valid_file_stream(fp));
|
||||
|
||||
fp << "//----- Default net type -----" << std::endl;
|
||||
fp << "`default_nettype "
|
||||
<< VERILOG_DEFAULT_NET_TYPE_STRING[default_net_type] << std::endl;
|
||||
fp << "`default_nettype " << VERILOG_DEFAULT_NET_TYPE_STRING[default_net_type]
|
||||
<< std::endl;
|
||||
fp << std::endl;
|
||||
}
|
||||
|
||||
|
@ -343,7 +343,7 @@ void print_verilog_module_declaration(
|
|||
/* Apply default net type from user's option */
|
||||
if (default_net_type != VERILOG_DEFAULT_NET_TYPE_WIRE) {
|
||||
print_verilog_default_net_type_declaration(fp, default_net_type);
|
||||
}
|
||||
}
|
||||
|
||||
print_verilog_module_definition(fp, module_manager, module_id);
|
||||
|
||||
|
|
Loading…
Reference in New Issue