aboutsummaryrefslogtreecommitdiffstats
path: root/tests/xilinx_ug901/tristates_2.v
blob: 0c70a125708e91c9e1f3fd8267ec04b40072f02a (plain)
1
2
3
4
5
6
7
8
9
10
// Tristate Description Using Concurrent Assignment
// File: tristates_2.v
//
module tristates_2 (T, I, O);
input  T, I;
output O;

assign O = (~T) ? I: 1'bZ;

endmodule