|
This post was updated on .
I'm sorry, this question has been asked, but none of their solutions have yielded me anything. I'm simply trying to start the first project by building the Not gate, but no matter what I try it tells me that NAND isn't in the working or built in folders. I wouldn't expect it to be in the working folder, but it is in the builtin. If it matters, I'm working in Linux.
Here's my code, if you think it's relevant.
CHIP Not {
IN in;
OUT out;
PARTS:
// Put your code here:
NAND (a=in, b=in, out=out);
}
Thanks in advance.
|