Commentary

This commit is contained in:
Wilson Snyder 2021-03-02 17:36:35 -05:00
parent e81abdb616
commit 7cc7afca04

View File

@ -1972,7 +1972,7 @@ We'll compile this example into C++.
Vour* top = new Vour;
while (!Verilated::gotFinish()) { top->eval(); }
delete top;
exit(0);
return 0;
}
EOF
@ -2043,7 +2043,7 @@ This is an example similar to the above, but using SystemC.
top->clk(clk);
while (!Verilated::gotFinish()) { sc_start(1, SC_NS); }
delete top;
exit(0);
return 0;
}
EOF
@ -2704,7 +2704,7 @@ accesses the above signal "readme" would be:
read_and_check();
}
delete top;
exit(0);
return 0;
}
EOF