for the full adder I built 3WayXor, -And and -Or and used them in FullAdder.hdl. When I try to load this, I get an error "A gate class name is expected."
CHIP FullAdder {
IN a, b, c; // 1-bit inputs
OUT sum, // Right bit of a + b + c
carry; // Left bit of a + b + c
PARTS:
// Put you code here:
3WayXor (... <- Error pointing to this line.
Actually, it is better to leave the built-in chips in that directory and put your own in /nand2tetris/MyChips. They are both searched. They are saved as source, however. Except for those written in Java they are not complied, but rather interpreted. You won't notice the difference.