And16

Posted by mohammad on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/And16-tp4025291.html

I'm trying to implement And16 using simple Nand and I was trying to using dot dot syntax for multibit. But simulator is complaining

PARTS:
    Nand(a[0..15] = a, b[0..15] = b, out[0..15] = o1);
    Nand(a[0..15] = o1, b[0..15] = o1, out[0..15] = out);

Can anyone suggest the correct format for multibit input. (According to the appendix A it is allowed dotted sysntax)

Thanks