Bitterguy wrote
I read the other thread with a similar problem yet that solution still did not work.
Here is my .hdl file text:
//Not in != out
CHIP Not {
...
PARTS:
Not(in = in, out = out);
}
By truing to use Not in your Not.hdl, you are causing infinite recursion. The Hardware Simulator is not smart enough to detect this 8-(
You need to use nothing but Nand parts to make your Not. (Hint: read appendix A.5.2 and find the named constants for constant 0 and 1 inputs.)
Once you have your Not working, then you can use Nand and Not to make And.
--Mark