URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [mp3_stable/] [mp3/] [lib/] [xilinx/] [unisims/] [OBUFT_F_6.v] - Rev 1765
Compare with Previous | Blame | View Log
// $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/mp3/lib/xilinx/unisims/OBUFT_F_6.v,v 1.1.1.1 2001-11-04 18:59:49 lampret Exp $ /* FUNCTION : TRI-STATE OUTPUT BUFFER */ `timescale 100 ps / 10 ps `celldefine module OBUFT_F_6 (O, I, T); parameter cds_action = "ignore"; output O; input I, T; tri0 GTS = glbl.GTS; or O1 (ts, GTS, T); bufif0 T1 (O, I, ts); specify (I *> O) = (1, 1); (T *> O) = (1, 1); endspecify endmodule `endcelldefine