KaptainBug
Newbie level 6
- Joined
- Feb 13, 2014
- Messages
- 11
- Helped
- 1
- Reputation
- 2
- Reaction score
- 1
- Trophy points
- 3
- Activity points
- 0
Code:
always @ (posedge IN1 or posedge IN2)
begin
if IN1
Y = 0
elsif IN3
Y = IN4
else
Y = Y
end
Please ignore any syntax errors.
Few questions
a. Is this a combinational or sequential circuit ?
b. IN3 is not in sensitivity list. So is this asynchronous input ?
c. What are the factors which determine the circuit is sequential other than the clock signal ?
Can you please point me to some websites/lectures for more on synthesis questions.
Thank you.
Last edited: