URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [mp3_stable/] [mp3/] [lib/] [xilinx/] [unisims/] [LDP.v] - Rev 317
Go to most recent revision | Compare with Previous | Blame | View Log
// $Header: /home/marcus/revision_ctrl_test/oc_cvs/cvs/or1k/mp3/lib/xilinx/unisims/LDP.v,v 1.1.1.1 2001-11-04 18:59:48 lampret Exp $ /* FUNCTION : D-LATCH with async preset */ `timescale 100 ps / 10 ps `celldefine module LDP (Q, D, G, PRE); parameter cds_action = "ignore"; parameter INIT = 1'b1; output Q; reg q_out; input D, G, PRE; tri0 GSR = glbl.GSR; buf B1 (Q, q_out); always @(GSR or PRE or D or G) if (GSR) q_out <= INIT; else if (PRE) q_out <= 1; else if (G) q_out <= D; specify if (!PRE && G) (D +=> Q) = (1, 1); if (!PRE) (posedge G => (Q +: D)) = (1, 1); (posedge PRE => (Q +: 1'b1)) = (1, 1); endspecify endmodule `endcelldefine
Go to most recent revision | Compare with Previous | Blame | View Log