Electrical Engineering Question:
Download Questions PDF

What is the difference between running the following snipet of code on Verilog vs Vera?

Answer:

What is the difference between running the following snipet of code on Verilog vs Vera?

fork {
task_one();
#10;
task_one();
}

task task_one() {
cnt = 0;
for (i = 0; i < 50; i++) {
cnt++;
}
}

Download Electrical Engineering Interview Questions And Answers PDF

Previous QuestionNext Question
Using the given, draw the waveforms for the following versions of a?Write the code to sort an array of integers?