John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

**Status: Tags: Links: Nand2Tetris Project 4


Nand2Tetris Mult Program

Objective

Ideas

Psuedo-Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
n = R1
i = 0

LOOP:
	if i > n goto END
	R2 = R0 + R2 // set adress to R2 and data to R0, M = M + D
	i++
	goto LOOP
END:
	goto END

ASM Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@R1
D=M
@n
M=D //set n to R1

@i
M=0 //set i to 0

@r
M=0 //set r to 0

(LOOP)
	@i
	D=M
	@n
	D=D-M
	@END
	D;JEQ //if i>n goto END
	
	@R0
	D=M
	@END
	D;JEQ //sets R2 to 0 if R0 = 0
	
	@R1
	D=M
	@END
	D;JEQ //sets R2 to 0 if R1 = 0
	
	@R0
	D=M //set D to R0
	@r
	M=D+M //adds R0 to r
	
	@i
	M=M+1 //i = i+1
	
	@LOOP
	0;JMP //rerun loop
	
(END)
	@r
	D=M
	@R2
	M=D
	@END
	0;JMP //infinite loop

Thoughts


References:


Interactive Graph