-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFill.asm
54 lines (51 loc) · 846 Bytes
/
Fill.asm
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
48
49
50
51
52
53
54
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/4/Fill.asm
// Runs an infinite loop that listens to the keyboard input.
// When a key is pressed (any key), the program blackens the screen,
// i.e. writes "black" in every pixel. When no key is pressed,
// the screen should be cleared.
(LOOP)
@KBD
D=M
@ON
D;JGT
@OFF
0;JMP
(ON)
@R0
M=-1
@DRAW
0;JMP
(OFF)
@R0
M=0
@DRAW
0;JMP
(DRAW)
@8191
D=A
@R1
M=D
(NEXT)
@R1
D=M
@pos
M=D
@SCREEN
D=A
@pos
M=M+D
@R0
D=M
@pos
A=M
M=D
@R1
D=M-1
M=D
@NEXT
D;JGE
@LOOP
0;JMP