Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
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