Regarding reset pin in the Design

Status
Not open for further replies.

Manochitra

Member level 2
Joined
Dec 9, 2011
Messages
47
Helped
15
Reputation
30
Reaction score
15
Trophy points
1,288
Activity points
1,585
hi....

If a design has reset pin, then it will affect input pin or output pin or both?
 

Reset pins are used to put all your registers, FSM states into known state.
Code:
 if (reset == 1'b0)
   a <= 1'b0;
else
   a <= b;
a - output; b as input.when reset is applied a will be assigned to 0. a will not vary wrt b until reset is removed.
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…