mirror of https://github.com/YosysHQ/yosys.git
Added a test case
This commit is contained in:
parent
e0c879684f
commit
a1344ec06e
|
@ -0,0 +1,19 @@
|
||||||
|
read_verilog <<EOT
|
||||||
|
module top(inout io);
|
||||||
|
wire in;
|
||||||
|
wire t;
|
||||||
|
wire o;
|
||||||
|
|
||||||
|
IOBUF IOBUF(
|
||||||
|
.I(in),
|
||||||
|
.T(t),
|
||||||
|
.IO(io),
|
||||||
|
.O(o)
|
||||||
|
);
|
||||||
|
endmodule
|
||||||
|
EOT
|
||||||
|
|
||||||
|
synth_xilinx
|
||||||
|
cd top
|
||||||
|
select -assert-count 1 t:IOBUF
|
||||||
|
select -assert-none t:* t:IOBUF %d
|
Loading…
Reference in New Issue