stuck on loading chip.. please help guys

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

stuck on loading chip.. please help guys

Jon Snow
i did this

CHIP RAM16K {
    IN in[16], load, address[14];
    OUT out[16];

    PARTS:
        DMux4Way(in=load,sel=address[12..13],a=a,b=b,c=c,d=d);

        RAM4K(in=in,load=a,address=address[0..11],out=oa);
        RAM4K(in=in,load=b,address=address[0..11],out=ob);
        RAM4K(in=in,load=c,address=address[0..11],out=oc);
        RAM4K(in=in,load=d,address=address[0..11],out=od);

        Mux4Way16(a=oa,b=ob,c=oc,d=od,sel=address[12..13],out=out);
}

and its just stuck on loading chip.. thanks for help
Reply | Threaded
Open this post in threaded view
|

Re: stuck on loading chip.. please help guys

cadet1620
Administrator
This is a correct RAM16K.

Are testing it in the the projects/03/b directory with no chips other than RAM512 and RAM4K?

If you have other chips, particularly the smaller RAMS, the simulator will run out of memory and various bad things happen.

Please edit your post to remove the HDL after your problem is resolved. We want students to develop their own solutions.

--Mark