URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mp3/] [lib/] [xilinx/] [unisims/] [STARTUP.v] - Rev 1779
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/STARTUP.v,v 1.1.1.1 2001-11-04 19:00:00 lampret Exp $ /* FUNCTION : Special Function Cell, STARTUP */ `timescale 100 ps / 10 ps `celldefine module STARTUP (DONEIN, Q1Q4, Q2, Q3, CLK, GSR, GTS); parameter cds_action = "ignore"; output DONEIN, Q1Q4, Q2, Q3; input CLK, GSR, GTS; tri0 GSR, GTS; assign glbl.GSR = GSR; assign glbl.GTS = GTS; pullup (Q2); pullup (Q3); pullup (Q1Q4); pullup (DONEIN); specify (GSR,GTS,CLK *> Q2) = (0,0); (GSR,GTS,CLK *> Q3) = (0,0); (GSR,GTS,CLK *> Q1Q4) = (0,0); (GSR,GTS,CLK *> DONEIN) = (0,0); endspecify endmodule `endcelldefine
Go to most recent revision | Compare with Previous | Blame | View Log