John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: Nand2Tetris Project 4


Nand2Tetris Fill Program

Objective

Tasks

Psuedo-Code

1
2
3
4
5
if (KBD!=0) {
	for (int reg=SCREEN; SCREEN<SCREEN_END; screen++) {
		reg=-1;
	}
}

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
(RESET)
	@i //amount added to SCREEN value to change
	M=0 //sets i to 0
	@8192  // number of pixels on a screen divided by 16-bit address (256 x 512 / 16)
	D=A    // D = total number of pixels
	@sum 
	M=D //sets sum to 8192
(KBDCHECK)
	@KBD
	D=M //sets D to KBD input
	@BLACK
	D;JGT //runs BLACK if there is input
	@WHITE
	D;JEQ //runs WHITE if there is no input
	
(BLACK)
	@i
	D=M //sets i to D
	@SCREEN
	A=A+D //sets address to SCREEN + i
	M=-1 //sets current register to black
	@INC
	A;JMP //jumps to INC
	
(WHITE)
	@i
	D=M //sets i to D
	@SCREEN
	A=A+D //sets address to SCREEN + i
	M=0 //sets current register to white
	@INC
	A;JMP //jumps to INC
	
(INC)
	@i
	M=M+1 //increments i by 1 to cover the next register
	@sum
	D=M-D 
	@RESET
	D;JEQ //jumps to RESET if i=max
	@KBDCHECK
	A;JMP //jumps to KBDCHECK

Notes



Interactive Graph