Electrical Engineering Question:

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

Electrical Engineering Interview Question
Electrical Engineering Interview Question

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++;
}
}


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