Re: RAM8
Posted by mike2549 on Dec 30, 2012; 9:15pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/RAM8-tp2456300p4025953.html
Hi Evan,
I have got as far as the Ram8. I have had some distractions and have "lost the thread".
After going back to the Register and DMux, I'm still stuck.
I'd sooooo appreciate any help or hints.
Following your hint to Sebastian, I came up with the following:
PARTS:
DMux8Way(sel=address,a=a,b=b,c=c,d=d,e=e,f=f,g=g,h=h);
Register(in=in,load=a,out=aa);
Register(in=in,load=b,out=bb);
Register(in=in,load=c,out=cc);
Register(in=in,load=d,out=dd);
Register(in=in,load=e,out=ee);
Register(in=in,load=f,out=ff);
Register(in=in,load=g,out=gg);
Register(in=in,load=h,out=hh);
}
Thanks
Mike