$24
1.1 Purpose
So far in this class, you have seen how binary or machine code manipulates our circuits to achieve a goal. However, as you have probably figured out, binary can be hard for us to read and debug, so we need an easier way of telling our computers what to do. This is where assembly comes in. Assembly language is symbolic machine code, meaning that we don’t have to write all of the ones and zeros in a program, but rather symbols that translate to ones and zeros. These symbols are translated with something called the assembler. Each assembler is dependent upon the computer architecture on which it was built, so there are many different assembly languages out there. Assembly was widely used before most higher-level languages and is still used today in some cases for direct hardware manipulation.
1.2 Task
The goal of this assignment is to introduce you to programming in LC-3 assembly code. This will involve writing small programs, translating conditionals and loops into assembly, modifying memory, manipulating strings, and converting high-level programs into assembly code.
You will be required to complete the four functions listed below with more in-depth instructions on the following pages:
1. summation.asm
2. buildMaxArray.asm
3. binaryStringToInt.asm
4. fourCharacterStrings.asm
1.3 Criteria
Your assignment will be graded based on your ability to correctly translate the given pseudocode into LC-3 assembly code. Check the deliverables section for deadlines and other related information. Please use the LC-3 instruction set when writing these programs. More detailed information on each instruction can be found in the Patt/Patel book Appendix A (also on Canvas under “LC-3 Resources”). Please check the rest of this document for some advice on debugging your assembly code, as well some general tips for successfully writing assembly code.
You must obtain the correct values for each function. While we will give partial credit where we can, your code must assemble with no warnings or errors (Complx will tell you if there are any). If your code does not assemble, we will not be able to grade that file and you will not receive any points. Each function is in a separate file, so you will not lose all points if one function does not assemble. Good luck and have fun!
2
• Detailed Instructions
2.1 Notes
• The algorithms presented for each operation are not meant to be the most efficient.
• Be wary of the differences between instructions like LD and LEA. When you have an answer, make sure you’re storing to the correct address. Trace through your code on Complx if you’re not sure if you’re using the correct instruction.
• Debugging via Complx helps tremendously. Eyeballing assembly code can prove to be very difficult. It helps a lot to be able to trace through your code step-by-step, line-by-line, to see if each assembly instruction does what you expected.
• You can check if far-away addresses contain expected values in Complx by going to View >> GoTo Address.
2.2 Part 1: Summation
To start you off with this homework, we are implementing a function that takes an integer x, and calculate the summation of x. Store the result of the operation at the label ANSWER. Argument “x” is stored in a label, and you will need to load it from there to perform this operation. Similarly, “ANSWER” reserved 1 memory space for you to store the summation of x. Note that if “x” is less than or equal to 0, return 0. Implement your assembly code in summation.asm.
For example, summation of 4 is 4 + 3 + 2 + 1 = 10.
Suggested Pseudocode:
int x = 6; (sample integer)
int sum = 0;
while (x > 0) {
sum += x;
x--;
}
mem[ANSWER] = sum;
Given x = 6, the above code should store 21 at label “ANSWER”, since the given x will yield the summation 6+5+4+3+2+1=21.
3
2.3 Part 2: Build Maximum Array
For the third assembly program, you are given two integer arrays A and B of the same length. We want you to create a third array C of the same length where the ith element of C is the maximum of the ith element in A and the ith element of B.
For instance, if A = [-4, 2, 6] and B = [4, 7, -2], then C[i] = max(A[i], B[i]). Hence, C = [4, 7, 6].
The label LEN will contain the size of arrays A and B. The labels A, B, and C will contain the address of where the arrays A, B, and C (respectively) begin in memory.
Your resulting array should be stored in memory, beginning at the address stored in label C. Implement your assembly code in buildMaxArray.asm
NOTE: Please do not change the names of any of the labels or the values stored in them as they may cause the autograder to misbehave. The sample values are okay to change though since the autograder will be running multiple test cases with different init-values. So if you want to debug on Complx, feel free to change those sample values!
Suggested Pseudocode:
int A[] = {-4, 2, 6}; (sample array)
int B[] = {4, 7, -2}; (sample array)
int C[3]; (sample array)
int length = 3; (sample length of above arrays)
int i = 0;
while (i < length) {
if (A[i] < B[i]) {
C[i] = B[i];
}
else {
C[i] = A[i];
}
i++;
}
4
2.4 Part 3: Binary String to Int
For the third assembly program, you are given an unsigned binary string. We want you to convert the unsigned binary string into an integer value.
For instance,
“10000100” should convert to a 132
“10000001” should convert to a 129
Your converted value should be stored in memory at the address stored in label RESULTIDX. Implement your assembly code in BinaryStringToInt.asm
Suggested Pseudocode:
String binaryString = "00010101"; (sample binary string)
int length = 8; (sample length of the above binary string)
int base = 1;
int value = 0;
int i = length - 1;
while (i >= 0) {
int x = binaryString[i] - 48;
if (x == 1) {
value += base;
}
base += base;
i--;
}
mem[mem[RESULTIDX]] = value;
Given a binary string(“00010101”), its length(8), and a location to store (x4000), this code should store 21 in memory address x4000.
5
2.5 Part 4: Four Character Strings in a paragraph
In the final part of this assignment, we want you to find the number of four letter words in a given null terminated string.
The label STRING will contain the address of the first character in our string. Keep in mind that a string is just an array of characters that end with a null-termination character (‘\0’). For your program, you are given one constant to help you called SPACE, which is the negative value of ‘space’ in ASCII (-32).
Store the result of the operation at the label ANSWER.
IMPORTANT
• To make writing this code easier, assume that all strings provided will end with a space (‘ ’).
• Special characters do not have to be treated differently. For instance, strings like “it’s” and “But,” are considered 4 character strings.
Implement your assembly code in fourCharacterStrings.asm Assume that the last character of every string is a space. NOTE:
• 0 is the same as ‘\0’
• 0 is different from ‘0’
• “ ” in ASCII is 32 (the space character)
Suggested Pseudocode:
int count = 0; (keep count of number of 4-letter words)
int chars = 0; (keep track of length of each word)
int i = 0; (indexer into each word)
String str = "I love CS 2110 and assembly is very fun! "; (sample string) while (str[i] != ‘\0’) {
if (str[i] != ‘ ’) {
chars++;
}
else {
if (chars == 4) {
count++;
}
chars = 0;
}
i++;
}
mem[ANSWER] = count;
The above code should store 4 at the label ANSWER from the 4 character strings: “love”, “2110”, “very”, and “fun!”.
6
• Deliverables
Turn in the following files on Gradescope:
1. summation.asm
2. buildMaxArray.asm
3. binaryStringToInt.asm
4. fourCharacterStrings.asm
Note: Please do not wait until the last minute to run/test your homework. Last minute turn-ins will result in long queue times for grading on Gradescope. You have been warned.
7
• Running the Autograder and Debugging LC-3 Assembly
When you turn in your files on Gradescope for the first time, you may not receive a perfect score. Does this mean you change one line and spam Gradescope until you get a 100? No! You can use a handy Complx feature called “replay strings”.
1. First off, we can get these replay strings in two places: the local grader, or off of Gradescope. To run the local grader:
◦ Mac/Linux Users:
(a) Navigate to the directory your homework is in (in your terminal on your host machine, not in the Docker container via your browser)
(b) Run the command sudo chmod +x grade.sh
(c) Now run ./grade.sh
◦ Windows Users:
(a) In Git Bash (or Docker Quickstart Terminal for legacy Docker installations), navigate to the directory your homework is in
(b) Run chmod +x grade.sh
(c) Run ./grade.sh
When you run the script, you should see an output like this:
Copy the string, starting with the leading ’B’ and ending with the final backslash. Do not include the quotation marks.
Side Note: If you do not have Docker installed, you can still use the tester strings to debug your assembly code. In your Gradescope error output, you will see a tester string. When copying, make sure you copy from the first letter to the final backslash and again, don’t copy the quotations.
2. Secondly, navigate to the clipboard in your Docker image and paste in the string.
8
3. Next, go to the Test Tab and click Setup Replay String
4. Now, paste your tester string in the box!
5. Now, Complx is set up with the test that you failed! The nicest part of Complx is the ability to step through each instruction and see how they change register values. To do so, click the step button. To change the number representation of the registers, double click inside the register box.
6. If you are interested in looking how your code changes different portions of memory, click the view tab and indicate ’New View’
9
7. Now in your new view, go to the area of memory where your data is stored by CTRL+G and insert the address
8. One final tip: to automatically shrink your view down to only those parts of memory that you care about (instructions and data), you can use View Tab → Hide Addresses → Show Only Code/Data.
10
• Appendix
5.1 Appendix A: ASCII Table
Figure 1: ASCII Table — Very Cool and Useful!
11
5.2 Appendix B: LC-3 Instruction Set Architecture
12
5.3 Appendix C: LC-3 Assembly Programming Requirements and Tips
1. Your code must assemble with NO WARNINGS OR ERRORS. To assemble your program, open the file with Complx. It will complain if there are any issues. If your code does not assemble you WILL get a zero for that file.
2. Comment your code! This is especially important in assembly, because it’s much harder to interpret what is happening later, and you’ll be glad you left yourself notes on what certain instructions are contributing to the code. Comment things like what registers are being used for and what less intuitive lines of code are actually doing. To comment code in LC-3 assembly just type a semicolon (;), and the rest of that line will be a comment.
3. Avoid stating the obvious in your comments, it doesn’t help in understanding what the code is doing.
Good Comment
ADD R3, R3, -1 ; counter--
BRp LOOP ; if counter == 0 don’t loop again
Bad Comment
ADD R3, R3, -1 ; Decrement R3
BRp LOOP ; Branch to LOOP if positive
4. DO NOT assume that ANYTHING in the LC-3 is already zero. Treat the machine as if your program was loaded into a machine with random values stored in the memory and register file.
5. Following from 3, you can load the file with randomized memory by selecting “File” ¿ “Advanced Load” and selecting randomized registers/memory.
6. Do NOT execute any data as if it were an instruction (meaning you should put .fills after HALT or RET).
7. Do not add any comments beginning with @plugin or change any comments of this kind.
8. Test your assembly. Don’t just assume it works and turn it in.
13
• Rules and Regulations
6.1 General Rules
1. Although you may ask TAs for clarification, you are ultimately responsible for what you submit. As such, please start assignments early, and ask for help early. This means that (in the case of demos) you should come prepared to explain to the TA how any piece of code you submitted works, even if you copied it from the book or read about it on the internet.
2. If you find any problems with the assignment it would be greatly appreciated if you reported them to the author (which can be found at the top of the assignment). Announcements will be posted if the assignment changes.
6.2 Submission Conventions
1. Do not submit links to files. The autograder does not understand it, and we will not manually grade assignments submitted this way as it is easy to change the files after the submission period ends. You must submit all files listed in theDeliverables section individually to Gradescope as separate files.
6.3 Submission Guidelines
1. You are responsible for turning in assignments on time. This includes allowing for unforeseen circum-stances. If you have an emergency let us know IN ADVANCE of the due time supplying documenta-tion (i.e. note from the dean, doctor’s note, etc). Extensions will only be granted to those who contact us in advance of the deadline and no extensions will be made after the due date.
2. You are also responsible for ensuring that what you turned in is what you meant to turn in. After submitting you should be sure to download your submission into a brand new folder and test if it works. No excuses if you submit the wrong files, what you turn in is what we grade. In addition, your assignment must be turned in via Canvas/Gradescope. Under no circumstances whatsoever we will accept any email submission of an assignment. Note: if you were granted an extension you will still turn in the assignment over Canvas/Gradescope.
6.4 Syllabus Excerpt on Academic Misconduct
Academic misconduct is taken very seriously in this class. Quizzes, timed labs and the final examination are individual work.
Homework assignments are collaborative, In addition many if not all homework assignments will be evaluated via demo or code review. During this evaluation, you will be expected to be able to explain every aspect of your submission. Homework assignments will also be examined using computer programs to find evidence of unauthorized collaboration.
What is unauthorized collaboration? Each individual programming assignment should be coded by you. You may work with others, but each student should be turning in their own version of the assignment. Submissions that are essentially identical will receive a zero and will be sent to the Dean of Students’ Office of Academic Integrity. Submissions that are copies that have been superficially modified to conceal that they are copies are also considered unauthorized collaboration.
You are expressly forbidden to supply a copy of your homework to another student via elec-tronic means. This includes simply e-mailing it to them so they can look at it. If you supply an electronic copy of your homework to another student and they are charged with copying, you will also be charged. This includes storing your code on any site which would allow other parties to obtain your code such as but not limited to public repositories (Github), pastebin, etc. If you would like to use version control, use github.gatech.edu
14
6.5 Is collaboration allowed?
Collaboration is allowed on a high level, meaning that you may discuss design points and concepts relevant to the homework with your peers, share algorithms and pseudo-code, as well as help each other debug code. What you shouldn’t be doing, however, is pair programming where you collaborate with each other on a single instance of the code. Furthermore, sending an electronic copy of your homework to another student for them to look at and figure out what is wrong with their code is not an acceptable way to help them, because it is frequently the case that the recipient will simply modify the code and submit it as their own.
15