mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-09-08 20:47:34 +02:00
Quieten box connection warnings.
This commit is contained in:
@@ -1430,7 +1430,7 @@ struct XAigerWriter : AigerWriter {
|
||||
bit = conn[i];
|
||||
} else {
|
||||
// FIXME: hierarchical path
|
||||
log_warning("connection on port %s[%d] of instance %s (type %s) missing, using 1'bx\n",
|
||||
log_debug("connection on port %s[%d] of instance %s (type %s) missing, using 1'bx\n",
|
||||
port_id.unescape(), i, box, box->type.unescape());
|
||||
bit = RTLIL::Sx;
|
||||
}
|
||||
@@ -1466,7 +1466,7 @@ struct XAigerWriter : AigerWriter {
|
||||
bit = conn[i];
|
||||
} else {
|
||||
// FIXME: hierarchical path
|
||||
log_warning("connection on port %s[%d] of instance %s (type %s) missing\n",
|
||||
log_debug("connection on port %s[%d] of instance %s (type %s) missing\n",
|
||||
port_id.unescape(), i, box, box->type.unescape());
|
||||
pad_pi();
|
||||
continue;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
logger -nowarn "Yosys has only limited support for tri-state logic at the moment\. .*"
|
||||
logger -nowarn "Ignoring boxed module .*\."
|
||||
logger -nowarn "Feature 'write_xaiger2' is experimental\."
|
||||
|
||||
read_verilog <<EOT
|
||||
module top(input [24:0] A, input [17:0] B, output [47:0] P);
|
||||
|
||||
Reference in New Issue
Block a user