Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
A 32 bit version can handle maximum 2^32 bit (4GB) memory. It seems memory requirement during simulation crossed the 4GB limit. To address memory more than 4GB you require a 64 bit version.
you have a lot of dumping code?
// tb.v
reg a;
// initial block with stimulas
initial begin
a = 1; // forever 1
wait(a == 0); // this event will never occur, but the simulator will wait.... and eat memory I think
$finish;
end