Starting from:

$30

CS2110-Homework 6 LC-3 Assembly Solved

The goal of this assembly  is to familiarize you with coding in the LC-3 assembly language. This will involve writing small programs, modifying memory, and converting from high-level code to assembly.

1         Instructions
1.1        Part 1: DeMorgan’s Revenge (or.asm)
For this part, notice that the LC-3 assembly language directly accommodates AND and NOT operations with corresponding instructions but not an OR instruction.

Use your knowledge of DeMorgan’s Laws to compute A | B.

Open or.asm, and notice there are three labels. The labels A and B point to two .fill values to be OR’d.

Store the result of A | B in memory at the third label ANSWER.

1.2        Part 2: Arrays – Summing Negative Numbers (sum negative.asm)
For this part, write a program which traverses an array and sums all of the negative numbers (there will also be positive numbers in the array).

Open sum negative.asm, and notice there are three labels. The labels ARRAY ADDR and ARRAY LEN point to the starting address and length of the array.

Before HALTing the program, be sure to store the result at the third label ANSWER.

Note: The sum will not necessarily be negative. For example, if there is overflow, you might end up with a positive number.

1.3        Part 3: Arrays – Selection Sort (select.asm)
For this part, write a program which sorts an array in ascending order according to the selection sort algorithm.

Consider the following pseudocode:

for i = 0 to ARRAY_LEN - 1:
# Iterate through every position in the array
min_idx = i
# Find the element that will move to position i
# Everything before index i is sorted, so we are # looking for the minimum value after index i

for j = i + 1 to ARRAY_LEN: if ARRAY_ADDR[j] < ARRAY_ADDR[min_idx]:

min_idx = j

# Swap the value that belongs here with the current # value; these might be the same value!

# (and index i might be equal to index min_idx)

swap(ARRAY_ADDR[i], ARRAY_ADDR[min_idx])

Open select.asm, and notice that there are two labels. The labels ARRAY ADDR and ARRAY LEN correspond to the starting address and length of the array, respectively.

Note: This sort should be in-place, so when your program finishes, the location in memory that contained your original array should now contain the sorted array.

1.4        Part 4: Strings – Comparing (strcmp.asm)
For this part, write a program which compares two null-terminated strings, or sequences of characters, according to the following specification:

•    The function should store either 1, 0, or -1 at the label ANSWER according to whether the first string is greater than, equal to, or less than the second string

•    Determine greater than, equal to, or less than by comparing their ASCII values

Consider the following examples:

strcmp("dogcat", catdog") == 1 strcmp("whether", "whither") == -1 strcmp("", "blank") == -1 strcmp("same", "same") == 0

Open strcmp.asm, and notice there are three labels. The labels ADDR STR 1 and ADDR STR 2 correspond to the starting addresses of the first and second strings to be compared.

The process is very simple: Iterate through both strings, comparing the character values at the same indices. When you find an inequality, or one of the two characters is a zero, stop the iteration and compute the result based on those two characters. If both characters are zero, the strings are equal. If one character is zero, that string comes first because it’s shorter. Otherwise, compare the differing characters, and the string with the smaller character value comes first.

Store the result at the third label ANSWER.

Note: Strings are zero-terminated sequences of 16-bit words. Consider the string "ASSEMBLY" starting at address x4000. The ASCII value for character ’A’ (x0041) is stored at x4000, the ASCII for character ’S’ (x0053) is stored at x4001, etc. Finally, the value 0 is stored at address x4008. You, of course, do not need to memorize or interpret the ASCII table to determine which value is smaller.

1.5        Part 5: Linked List – Finding Extrema (max min.asm)
For this part, write a program that traverses a singly-linked list of nodes and finds both the maximum and minimum elements, where each node is comprised of a next address that points to the next node and an integer data. Consider the following pseudocode:

node = HEAD_ADDR

if node == NULL:
# For an empty list, set some invalid values:
max = MIN_INT
#               - The smallest possible number for max
min = MAX_INT
#               - The largest possible number for min
else:
# For a non-empty list, initialize with the head node’s data:
max = mem[node + 1] min = mem[node + 1]
#                Remember: mem[node + 1] is the node’s integer data
node = mem[node]
#              Remember: mem[node] is the node’s next address
while node != 0:
# For all remaining nodes in the list:
if mem[node + 1] max: max = mem[node + 1]
#          Check for a new max
if mem[node + 1] < min: min = mem[node + 1]
#          Check for a new min
node = mem[node]
# How do we get the address of the next node?
Once again, each node of this list is comprised of two consecutive 16-bit values in memory: The address of the next node and the data being stored.

Consider an example list with a HEAD ADDR, or starting node, at address x4000.

Address | Contents | Comments

---------+----------+--------------

x4000 |
x4004 | Node 1: next
x4001 |
x0035 | Node 1: data
x4002 |
x345A | ...
x4003 |
x7441 | ...
x4004 |
x4008 | Node 2: next
x4005 |
x0101 | Node 2: data
x4006 |
x0000 | Node 4: next
x4007 |
x9040 | Node 4: data
x4008 |
x4006 | Node 3: next
x4009 |
x7000 | Node 3: data
Observe that Node 1 points to Node 2 (at address x4004). Node 2 points to Node 3 (at address x4008). Node 3 points to Node 4 (at address x4006). Finally, Node 4 points to address x0000 (i.e. NULL), signaling the end of the list!


3         LC-3 Assembly Programming Requirements
3.1        Overview
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 the code in this file 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. Try to write high-level pseudo-code instead!

Good Comment

ADD R3, R3, -1
; counter--
BRp LOOP

Bad Comment
; if counter == 0 don’t loop again
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 randomize the memory and load your program by doing File - Randomize and Load.

6.   Do not add any comments beginning with @plugin or change any comments of this kind.

7.   Test your assembly. Don’t just assume it works and turn it in.

4         Hints
4.1        Pseudo-Ops
Pseudo-Ops are directions for the assembler that aren’t actually instructions in the ISA.

1.   .orig: Tells the assembler to put this block of code at the desired address.

Example: .orig x3000 will put the block of code at address x3000.

2.   .stringz "something": Will put a string of characters in memory followed by NULL (which is a single ASCII character with the value 0).

Example: .stringz "sanjay" will put the ASCII code for the letter ‘s’ in the first memory location, the code for ‘a’ in the second memory location, and so on until putting ‘y’ in the next-to-last position and NULL (which again, has the ASCII code 0) in the last memory location as the terminator.

3.   .blkw n: A pseudo-op that will allocate the next n locations of memory for a specified label.

4.   .fill value: A pseudo-op that will put the value in that memory location.

5.   .end: A psuedo-op that denotes the end of an address block. Matches with an .orig.

4.2        Traps
Traps are subroutines built into the LC-3 to help simplify instructions. Some helpful TRAPS include:

1.   HALT: HALT is an alias for a TRAP that will stop the LC-3 from running

2.   OUT: OUT is an alias for a TRAP that will take whatever character is in R0 and print it to the console

3.   PUTS: PUTS is an alias for a TRAP that will print a string of characters with the starting address saved in R0 until it reaches a NULL (0) character

4.   GETC: GETC is another TRAP alias that will take in a character input and store it in R0

Being an alias for a TRAP instruction means that the assembler will convert them to TRAP instructions at assembly time. For example, if you write HALT in your code, the assembler will convert it to the instruction, TRAP x25 for you.

4.3        Example
The following small example will demonstrate the use of these Traps and pseudo-ops:

       .orig x3000                                            ; Where the code will begin

      LEA R0, HW                                                 ; Loads the address of the string into R0

     PUTS                                                              ; Print the string whose address is in R0

     HALT                                                         ; Stops the program from executing

          HW .stringz "Hello. \n"                           ; Stores the word ’Hello’ in memory with ’H’ be located at

; address x3003, ’e’ will be located at address x3004, etc

     .end                                                           ; Denotes the end of the address block

More products