Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
lattice
/
ecp5
/
primitives
/
io
/
BB
/
BB.sim.v
blob: 4b7d61a79eab4ce402ac81b40a9e35e77449eb9c [
file
] [
log
] [
blame
] [
edit
]
`default_nettype none
module BB(input I, T, output O, inout B);
assign B = T ? 1'bz : I;
assign O = B;
endmodule