mohi@608
Member level 4
- Joined
- Apr 4, 2012
- Messages
- 69
- Helped
- 1
- Reputation
- 2
- Reaction score
- 1
- Trophy points
- 1,288
- Activity points
- 1,719
well i want to have a async reset which is active high on a block which is operating at posedge of sys clock..
my code is as follows.......
my doubt is can we use both sy_clk and reset at posedge in order to fullfill the async condition ???...or is there any other method ???
my code is as follows.......
Code:
always@(posedge sys_clk or posedge reset)
begin
if(reset)
......
.,,,
end(
my doubt is can we use both sy_clk and reset at posedge in order to fullfill the async condition ???...or is there any other method ???