sureshaa
Member level 1
- Joined
- Dec 18, 2012
- Messages
- 41
- Helped
- 3
- Reputation
- 6
- Reaction score
- 3
- Trophy points
- 1,288
- Activity points
- 1,529
Hi all,
I having one soft reset in my system.But some of the block needs the reset release after some time of soft reset release. For that I am using like below,
temp_rst_n <= sys_rst_n and temp_enable;
In my system(totally 60 blocks), within that 20 blocks are used the temp_rst_n as reset but all others will work at sys_rst_n.I didnt use the global reset for those 20 blocks.I have use the temp_rst_n as below,
process(clk,temp_rst_n )
begin
if(temp_rst_n ='0')then
assignments;
else rising_edge (clk) then
assignments;
end if;
end process;
Whether it will leads to problem? please share me any documents regarding the above issue.
thanks and regards,
Suresh.A
I having one soft reset in my system.But some of the block needs the reset release after some time of soft reset release. For that I am using like below,
temp_rst_n <= sys_rst_n and temp_enable;
In my system(totally 60 blocks), within that 20 blocks are used the temp_rst_n as reset but all others will work at sys_rst_n.I didnt use the global reset for those 20 blocks.I have use the temp_rst_n as below,
process(clk,temp_rst_n )
begin
if(temp_rst_n ='0')then
assignments;
else rising_edge (clk) then
assignments;
end if;
end process;
Whether it will leads to problem? please share me any documents regarding the above issue.
thanks and regards,
Suresh.A