https://github.com/notryanb/nand2tetris-rust
Implementing exercises from Nand2Tetris book in Rust
https://github.com/notryanb/nand2tetris-rust
Last synced: 11 months ago
JSON representation
Implementing exercises from Nand2Tetris book in Rust
- Host: GitHub
- URL: https://github.com/notryanb/nand2tetris-rust
- Owner: notryanb
- Created: 2019-05-27T21:31:10.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-27T22:04:18.000Z (about 7 years ago)
- Last Synced: 2025-07-05T09:05:44.392Z (11 months ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Nand2Tetris-Rust
---
This project is an attempt to work through the exercises found in the book,
[The Elements of Computing Systems - Building a Modern Computer from First Principles](https://www.nand2tetris.org/).
While the website includes an HDL program and other goodies,
I thought it might be interesting to see how this might work out in code as I work through the real HDL and rust library simultaneously.
The NAND Gate is implemented first with a truth table, and then all other gates are built sucessively from it.