I am currently trying to finish off the project found in Chapter 4 of the Nand to Tetris course (Fill.asm
). However, Assembler is giving me the following error:
"In line 3, Expression Expected"
I'm not sure what I'm doing wrong... but below is the snippet of code I have:
@i
M=1
@sum
M=8192
(END)
@END
0,JMP
Can anyone tell me why I'm getting this error on Line 3 (@sum
)?