as a task I have to find the maximum number in the RAM locations 10 to 20 and we have to write the solution into RAM[0]. I have a big problem with getting the indexes up every time the loop goes through and I'm confused by the way of storing the data. Can someone help me? I have literally tried everything without any kind of solution...
My so far best approach:
@0
D=A
@R0
M=D
@10
D=A
@R1
M=D
@R1
D=M
@i
M=D //i=RAM[1]=10
(LOOP)
// break condition for the Loop: If the Index i is = 20 --> goto End
@i
D=M
D=D-20
@END
D; JEQ
// i=i+1
@i
D=M
D=D+1
M=D
// store the value of RAM[i] in RAM[0]
@i
D=M
@R0
M=D
// Compare the value of RAM[i] and RAM[0]
@i
D=M
@R0
D=D-M
@R0
M=D
@i
D=M
@R0
M=D
(END)
@END
0;JMP
Here is the problem, that the compiler has some problem with line 19 ("Expected Expression"). Has this Error to do with the variable somehow?
Kind regards and thanks for your time
You may find it helpful to develop the algorithm in a language you are comfortable with, using simple statements, and then convert it into Hack assembly. That way you'll be sure the algorithm is correct, and you'll be able to track what the Hack code is doing and more easily spot mistakes.
Putting the high-level code into your Hack project as comments will also be helpful.
To compare two numbers in Hack, you subtract one from the other and then jump based on the resulting flags. The boilerplate code looks something like this:
Once you have something that is working, don't stop there. One of the joys of writing in assembly language is finding clever optimizations that reduce the size of your code. See how many you can find and add to your bag of tricks.