CS061 Lab5- Building Subroutines Solved

35.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

5/5 - (1 vote)

Today you will learn the art of building subroutines, and become invincible.

  • Our Objectives for This Week
  1. If you have not done so already, complete Lab 4, exercise 4

(Go back to your your lab 4 directory, and follow the instructions in your lab 4 specs) You should have completed this step BEFORE the start of your lab 5 session)

  1. Lab 4 review, & intro to subroutines –  Exercise 01
  2. Roll your own subs –   Exercises 02 – 03
  3. Feel smug about it all — Exercise 04

 

  1. Subroutines: The Art of writing something once

Here is the basic structure of every subroutine you will ever write in LC3:

;=======================================================================

; Subroutine: SUB_intelligent_name_goes_here_3200

; Parameter (Register you are “passing” as a parameter): [description of parameter]

; Postcondition: [a short description of what the subroutine accomplishes]

; Return Value: [which register (if any) has a return value and what it means]

;======================================================================= 

.orig x3200       ; use the starting address as part of the sub name

;========================

; Subroutine Instructions

;========================

; (1) Backup R7 and any registers that this subroutine changes except for Return Values ; (2) Whatever algorithm this subroutine is intended to perform – only ONE task per sub!!

; (3) Restore the registers that you backed up

; (4) RET – i.e. return to where you came from

;======================== ; Subroutine Data

;========================

BACKUP_R0_3200   .BLKW #1 ; Make one of these for each register that the subroutine changes

BACKUP_R7_3200   .BLKW #1 ; … EXCEPT for Return Value(s)

The header contains information you will need when reusing the subroutine later (which you will be doing a lot from now on!)

  • .ORIG value:

Each subroutine that you write needs to be placed somewhere specific in memory (just like our “main” code which we always locate at x3000).

A good convention to use is {x3200, x3400, x3600, …} for the {first, second, third, …} subroutine.

  • Subroutine name:

Give the subroutine a good name and append the subroutine’s address to it to make it unique​.  For example, if the subroutine “SUB_PRINT_ARRAY” starts at x3600, you should name the subroutine “SUB_PRINT_ARRAY_3600” to make it completely unique.

  • Parameters:

Any parameters that you pass to the subroutine. This is a little​ ​ bit like passing params into a function in C++, except in assembly you pass them in via specific registers​ rather than named variables.

  • Postcondition:

What the subroutine actually does so you won’t have to guess later …

  • Return Value:

The register(s) in which the subroutine returns its result (if any)—again, so you don’t have to try to guess later when you want to reuse the subroutine. Unlike C++ functions, you can return multiple values from a subroutine, one per register. If you are really​ careful you can even return a value in a register that was used to pass in a parameter (but not until you really know what you’re doing!!)

Once your header is done, you can write your subroutine. This is a 4-step process:

  1. Backing up registers:

Have you run into the problem yet where you said, “awh heck… I ran out of registers to use!”?

Well, without this step, you would encounter that problem a ​lot​ more.

In this step, use ST to backup R7 and any other registers that this subroutine changes except for registers used for passing in parameters and/or for returning values​.

You must​ backup R7 because – as we will see below – R7 stores the address to return to after executing, and if you use any TRAPs inside your subroutine, they will use R7 for the same purpose themselves – and you will not be able to get back to where you came from!

  1. Write your subroutine code:

Write whatever code is necessary to make the subroutine do its thing.

IMPORTANT:​ all prompts & error messages relating to the subroutine should be part of the subroutine – so, for instance, if a subroutine takes input from the user, the corresponding prompt must be in the subroutine data block, not in “main” where the subroutine is invoked.

  1. Restore registers:

In this step, use LD to restore the registers that you backed up in step 1.

Remember to always​ backup/restore R7.

Remember to never​ backup/restore register(s) that contain your Return Value(s).

  1. Return:

Use the RET instruction (alias for JMP R7) to return to where you came from. RET is a little bit like “return” in C++

Reminder about Register Transfer Notation: ●      Rn = a register

  • (Rn) = the contents of that register
  • Mem[ some value ] = the contents of the memory address (expressed as a hex value) a <– b  =   transfer (i.e. copy)  the ​value​ b to the location​ a.

○    R5 <– (R4) means “copy the contents of Register 4 to Register 5, overwriting any previous contents of Register 5” – e.g.      ​ADD R5, R4, #0

○    Mem[ xA400 ] <– Mem[ (R3) ]  means “obtain the value stored in R3 and treat it as a memory address; obtain the value​ stored ​at that address​; copy that ​value into memory at the address​ xA400.

The instruction you will need

JSR and JSRR​ ​(two versions of the same instruction, differing only in their memory addressing modes)

 

JSR label works just like BRnzp – i.e. it ​           unconditionally​           ​ transfers control to the instruction at label; and ​JSRR R6​ works just like JMP – i.e. it transfers control to the instruction located at the address stored in R6, known as the ​base register​;

– ​with one very big difference:​ before transferring control with JSR or JSRR, the very first thing that happens is that the address of the next instruction – i.e. the return point – is stored in ​R7.​

This means that at the end of the subroutine, we can get back to where we jumped from with RET Example Code: Yay!!!

Following is an example that calls a really short subroutine that takes the 2’s complement of R1:

Next is a slightly longer program that has three different strings (each stored in its own array) and calls a subroutine that prints out the contents of an array – in other words, we call the same subroutine 3 times. The address of the string to print is passed to the subroutine in R1.

This time, the main code block is in a ​different file​ than the subroutine code. Each file has its own .ORIG and its own .END. You can load both files into the simpl simulator by typing the following on the command line:       ​simpl main.asm library.asm​  (note that the main routine must be listed first)

Note that if you use any other LC-3 emulator than simpl, you will probably have to use the technique of this second example, with a separate .asm file for each routine/subroutine, since the emulator may not be able to handle multiple .orig pseudo-ops in a single file as simpl does.

3.2 Exercises

NOTE: No “ghost writing”! That gets an instant 0!

Exercise 01

Recall that exercise 04 from last week created an array of the first 10 powers of 2 {2​0​, 2​1​, 2​2​, …, 2​9​}, and then printed out their respective 16-bit binary representations (e.g. b0000 0000 0000 0001) one per line.

You did this by pasting the print code directly inside the loop.

Rework this exercise by converting the code that prints out R2 in 16-bit binary into a proper subroutine (as above, including proper headers), and simply invoking it from inside the loop.

Exercise 02

Write the ​inverse​ of a binary printing subroutine. That is, write a binary ​reading​ subroutine:

First, the subroutine will prompt the user to enter a 16-bit 2’s complement binary number: the user will enter ‘b’ followed by exactly sixteen 1’s and 0’s: e.g. “​b0001001000110100​” ​(no spaces on input)

Your subroutine should do the following:

  1. The user enters a binary number as a sequence of 17 ascii characters: b0010010001101000​
  2. The result of (1) is transformed into a single 16-bit value, which is stored in R2.

Your “main” can now invoke the subroutine from Exercise 01 to print the value of R2 back out to the console to check your work.

“Binary read” Algorithm:

total <–        0
counter <–        16
R0 <–  get input from user (the initial ‘b’) and do nothing with it

do

{

; that’s your job 🙂

; HINT: the 4-bit binary number b1011 is (b101 * #2 + 1) } while ( counter > 0 );

Exercise 03

Enhance exercise 2 so that it now performs some input validation​:

  • If the first character entered is not ‘b’, the program should output an error message and go back to the beginning
  • After that, if a SPACE is ever entered, the program should​ ​only echo it​ ​and continue (i.e. spaces are accepted but ignored in the conversion algorithm).
  • If ​any​ character other than ‘1’, ‘0’ or SPACE is entered after the initial ‘b’, the program should output an error message and ask for a valid character – i.e. it should keep everything received so far, and keep looping until it gets a valid ‘0’, ‘1’ or space.

Exercise 04: Just read this

From now on, all​ ​ of your programs will consist of a simple test harness invoking one or more subroutines in which you will implement the assigned task – so make sure you have completely mastered the art of dividing your program up into these “self-contained” modules.

Each subroutine should perform a single task, and have CLEAR and EXPLICIT comments describing what it does, what input is required (and in which registers), and what will be returned (in which register).

A subroutine may invoke another subroutine – but only if you are very, very​          ​ careful!!  We will let you know when we want you to do this.

Make sure you understand and always employ basic “register hygiene” – i.e. backup and restore ONLY​ those registers that are modified by the subroutine for internal purposes only (and remember R7 if your subroutine invokes nested subroutines and/or TRAPS!)

  • lab5-zaejcu.zip