mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-22 13:41:27 +00:00
12 lines
232 B
Text
12 lines
232 B
Text
# Multiple names for the same inout port
|
|
logger -expect error "Missing details for module port" 1
|
|
read_verilog << EOF
|
|
module gate_multi_inout (
|
|
.i(a),
|
|
.o(a)
|
|
);
|
|
inout a;
|
|
endmodule
|
|
EOF
|
|
logger -check-expected
|
|
design -reset
|