|
You understand from ybakos that you will need 16 1-bit Not gates to make the 16-bit Not chip right? So the start of your HDL will look something like this (first 3 parts displayed):
CHIP Not16 {
IN in[16];
OUT out[16];
PARTS:
Not(in=?,out=?);
Not(in=?,out=?);
Not(in=?,out=?);
....
So the task is how do you hook up each individual input of the Not16 to the input of a Not gate and then hook up each output of the Not gates to one of the ouputs of the Not16? These hookups are represented by the ? here. I hope I'm not giving away too much here.
|