Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00524
/
top.v
blob: b25b6d44259cccf9142674eb4b615cf479f2499e [
file
] [
log
] [
blame
]
module
top
(
inout a
,
inout b
,
input dir
,
);
wire aout
,
bout
;
GP_IOBUF iobufa
(
.
IO
(
a
),
.
OUT
(
aout
),
.
IN
(
bout
),
.
OE
(
dir
)
);
GP_IOBUF iobufb
(
.
IO
(
b
),
.
OUT
(
bout
),
.
IN
(
aout
),
.
OE
(!
dir
)
);
endmodule