URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [mp3_stable/] [mp3/] [lib/] [xilinx/] [unisims/] [OFD_S.v] - Rev 1765
Compare with Previous | Blame | View Log
// $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/mp3/lib/xilinx/unisims/OFD_S.v,v 1.1.1.1 2001-11-04 18:59:50 lampret Exp $ /* FUNCTION : Output D-FLIP-FLOP */ `timescale 100 ps / 10 ps `celldefine module OFD_S (Q, C, D); parameter cds_action = "ignore"; parameter INIT = 1'b0; output Q; reg q_out; input C, D; tri0 GSR = glbl.GSR; tri0 GTS = glbl.GTS; bufif0 B1 (Q, q_out, GTS); always @(GSR) if (GSR) assign q_out = INIT; else deassign q_out; always @(posedge C) q_out <= D; specify (posedge C => (Q +: D)) = (1, 1); endspecify endmodule `endcelldefine