all repos — nand2tetris @ 8c016de00acf4ccf622c4e2b1af6d218011fed0c

my nand2tetris progress

projects/06/README.md

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
# Assembler(s)

Approach: write 2-3 assemblers, then compare all three, their approaches, pros/cons, and write retrospective.

1. Write an assembler purely from scratch w/o any "spoilers" or implementation tips from the book or online (besides what I already know).
- DONE
2. Write an assembler based off of an elegant assmbler I've already seen online (ex. 100rabbits assembler)
- Inspiration taken from the following code:
    - https://github.com/dmatlack/chip8
    - https://git.sr.ht/~rabbits/gyo
    - https://git.sr.ht/~rabbits/uxn11
- DONE
3. Write the assembler based on the book's recommended implementation/organization.
- I may/may not do this, time permitting.