aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/common/tribuf.v
blob: e1d701611eb579a17e04f12e1aea970e3cb47fa6 (plain)
1
2
3
4
5
6
7
8
module tristate(en, i, o);
    input en;
    input i;
    output reg o;

    always @(en or i)
        o <= (en)? i : 1'bZ;
endmodule