Thanks. I went back and played a bit more and still can’t the one that worked first to pass.
Here is the .hdl file. I have read the Survival Kit, the Q&A posts, Ch 1 and reference appendix A.
Appreciate any help to move pass step 1 of project 1. Project 7 feels quite a long way off…
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/01/Not.hdl
/**
* Not gate:
* out = not in
*/
CHIP Not {
IN in;
OUT out;
PARTS:
// Nand(a=in, b=1, out=out);
}
From: "ivant [via Nand2Tetris Questions and Answers Forum]" <
[hidden email]>
Date: Friday, June 17, 2016 at 10:52 PM
To: Carla Guarraia <
[hidden email]>
Subject: Re: Multiple Options for Not
Hello and welcome to the course :)
You should check out Mark's excellent
Hardware Construction Survival Kit.
For your specific problem, the error may be on the previous line, as some of the implementations that you provided should work. If you want, you can email me your full solutions directly.
--
Ivan