**Status: Tags: Links: Nand2Tetris Project 4
Nand2Tetris Mult Program
Objective
- This program computes the value R0*R1 and stores the result in R2.
Ideas
- Use for loops to add R0 to R2 R1 times
Psuedo-Code
|
|
ASM Code
|
|
Thoughts
- Could definitely be more optimized
- I saw a solution had it where they used a while loop instead of a for loop
- I just used the for loop since it was given as an example xd
- I saw a solution had it where they used a while loop instead of a for loop
- Super happy I was able to solve it independently
- Using a new variable to mitigate the -1 set
- Understanding that JGT should have been JEQ
References: