From 406f544df6ea2a8eff3d3a322ccdf2dd0155f81d Mon Sep 17 00:00:00 2001 From: Nemo Date: Tue, 19 May 2020 19:33:19 +0530 Subject: [PATCH] Fancy README --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index aab297d..a9c01fc 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,25 @@ - Download the latest `nand2tetris.zip` from the book website, and overwrite everything in the `projects` and `tools` directory. - Remember to run `chmod +X tools/*.sh` if you're on \*nix. + + +## [Project 1: Boolean Logic](https://www.nand2tetris.org/project01) + +Build order as per the website. Cost for each gate in NAND in brackets. + +- [x] `Nand` (primitive) +- [x] `Not` (1) +- [x] `Or` (3) +- [x] `Xor` (6, Need to improve this) +- [x] `And` (2) +- [x] `Mux` (8, Took me ages) +- [x] `DMux` (5, Super Fun) +- [x] `Not16` (16) +- [x] `And16` (32) +- [x] `Or16` (48) +- [ ] `Mux16` () +- [ ] `Or8Way` () +- [ ] `Mux4Way16` () +- [ ] `Mux8Way16` () +- [ ] `DMux4Way` () +- [ ] `DMux8Way` ()