Electrical Engineering Question:
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++;
}
}
fork {
task_one();
#10;
task_one();
}
task task_one() {
cnt = 0;
for (i = 0; i < 50; i++) {
cnt++;
}
}
Previous Question | Next Question |
Using the given, draw the waveforms for the following versions of a? | Write the code to sort an array of integers? |