Chip NAND is not found in the working and builtin folders
Posted by ofz23182 on May 04, 2020; 4:43pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Chip-NAND-is-not-found-in-the-working-and-builtin-folders-tp4034561.html
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.