The series below, (four to be precise) of pseudo-code segments that represent typical code and data structures that one might implement with a language such as Java or Python. Devise a strategy to implement these code and data structures using only the Hack assembler. You will be able to use the following assembler codes or symbols to complete this assignment. The following 4 problems are the pseudocode routines that you must implement in the Hack assembler. You should develop the code for your assembler program, compile and test it using the CPU Simulator (Please suggest a link for the CPU Simulator). Kindly show the assembler code by pasting it directly. You should document your code using the // symbol as a comment to describe what part of the pseudo code is being implemented by your assembler code in the assignment so that I can understand how you implemented the code in the assembler. The four problems that you must code include. Comments should not be included in your code when you compile and test it. A couple of tips that might be useful: Comparisons: Your program will need to compare two numbers to determine if one is larger than the other. In assembler, we do not have an ‘if’ expression that allows us to test the equality or inequality of two variables. The way that this capability can be implemented is by subtracting the second number from the first number and then jumping based upon the result. For example, if A and B are our two numbers then the rules for A-B are as follows: If A-B = 0, then A=B. If A-B > 0, then A > B. If A-B < 0, then A < B. If the result of the operation is 0 then we can execute a JEQ which means jump if the output of the operation is equal to zero (see the jump table above). In the algorithm, we need to be able to test if a variable is less than, greater than, or equal to either another variable or a constant value. Each of these tests can be accomplished by subtracting the two numbers and then using the appropriate jump instructions such as: JLT – jump less than 0 JGT – jump greater than 0 JEQ – jump equal to 0 Here, you should develop your solution to the exercise and test it using the CPU emulator.
The series below, (four to be precise) of pseudo-code segments that represent typical code and data structures that one might implement with a language such as Java or Python. Devise a strategy to implement these code and data structures using only the Hack assembler. You will be able to use the following assembler codes or symbols to complete this assignment.
The following 4 problems are the pseudocode routines that you must implement in the Hack assembler. You should develop the code for your assembler program, compile and test it using the CPU Simulator (Please suggest a link for the CPU Simulator). Kindly show the assembler code by pasting it directly. You should document your code using the // symbol as a comment to describe what part of the pseudo code is being implemented by your assembler code in the assignment so that I can understand how you implemented the code in the assembler. The four problems that you must code include. Comments should not be included in your code when you compile and test it.
A couple of tips that might be useful:
Comparisons: Your program will need to compare two numbers to determine if one is larger than the other. In assembler, we do not have an ‘if’ expression that allows us to test the equality or inequality of two variables. The way that this capability can be implemented is by subtracting the second number from the first number and then jumping based upon the result. For example, if A and B are our two numbers then the rules for A-B are as follows:
If A-B = 0, then A=B.
If A-B > 0, then A > B.
If A-B < 0, then A < B.
If the result of the operation is 0 then we can execute a JEQ which means jump if the output of the operation is equal to zero (see the jump table above).
In the
JLT – jump less than 0
JGT – jump greater than 0
JEQ – jump equal to 0
Here, you should develop your solution to the exercise and test it using the CPU emulator.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images