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