When we use
input reg [7:0] ast, f_out;
ast === f_out ;
ast <= ast + 8'b00000001;
for those operations ” === and <= “, Have any time delay been occurred ?
EDIT: I think something small like 1 unit time, am I wrong ?
used language : verilog
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There will be a simulation cycle delay if you use
<=– ie a nonblocking assignment. Read up on blocking vs nonblocking assignments.Also,
===is not an assignment – its an equality operator that doesn’t treatxandzas don’t cares