Forum Discussion
Altera_Forum
Honored Contributor
11 years agoneed help in changing the deay in SYSRESET block in Igloo-2 device implementation
Hi, in one of our project we are using igloo2 device in which we are using "SYSRESET" block for reset deglitching.by default the out put delay is set to 10ps in the library,by chaning the veril...
Altera_Forum
Honored Contributor
11 years agoIn simulation whr i need to give compiled libraries,v are compiling verilog file which is in installed directory inwhich code is as below for SYSRESET block.Its not generic to pass whr it is being instantiated.If i change delay here and compile able to see effect in simulation.
`timescale 1 ps/1 ps module SYSRESET(input DEVRST_N, output POWER_ON_RESET_N); reg reset_n_int; initial begin reset_n_int = 1'b1; # 1; reset_n_int = 1'b0; # 1000; reset_n_int = 1'b1; end and U0 ( POWER_ON_RESET_N, DEVRST_N, reset_n_int ); specify specparam tpdLH_A_to_Y = (10:10:10); specparam tpdHL_A_to_Y = (10:10:10); (DEVRST_N => POWER_ON_RESET_N ) = ( tpdLH_A_to_Y, tpdHL_A_to_Y ); endspecify endmodule doubt is how to tell this changed delay to implementation Thanks in advance