In this lab you will construct an assembly routine that puts the ASCII representation of an input string in memory at a specified location. The LC-3 machine language provides several useful TRAP calls for I/O (Patt 2e Appendix A, p 541). For example, GETC (TRAP x20) gets one character from the keyboard and places its ASCII code in RO. OUT (TRAP X21) performs the opposite function - it takes the contents of RO and outputs the specified character (using ASCII encoding) to the display. The LC-3 provides two output TRAPS for strings: PUTS (TRAP x22) and PUTSP (TRAP x24). Both of these expect (in RO) a starting address for a string, and output the encoded string to the display. Your task is to produce two programs that provide the "opposite" function of PUTS and PUTSP- that is, they take a string as input and place the string into memory at a location specified in RO. You will create two separate stand-alone programs: one for GETS and one for GETSP. The programs do not need to be implemented as subroutines or TRAP calls. Using the LC-3 simulator, you will construct an assembly-level program that prompts the user for a string (the end of the string will be delimited by the character xOA, the ASCII character "Enter"). You will store the ASCII string representation of this input (including a terminating NULL character) in memory. The "Enter" character should not be considered part of the string and thus should not be stored. For the purposes of demonstration, I would like you to store the string at address x3100 (add the appropriate code to your program) and show that you have successfully stored the string by printing it back to the display using PUTS or PUTSP. Your program will be located in memory at location x3000. The following is an example output for both GETS.asm and GETSP.asm: Enter string to echo: Go Raiders! Go Raiders! Halting the processor
To implement the GETS program in LC-3 assembly, you would need to perform the following steps:
- Load the starting address of the string (x3100) into RO.
- Prompt the user to enter a string by calling OUT with a message to "Enter string to echo:".
- Use a loop to continuously call GETC to get characters from the user until the ASCII code for "Enter" (x0A) is received.
- Store each character received from GETC in the memory location pointed to by RO.
- Increment RO after each character is stored to move to the next memory location.
- Once the "Enter" character is received, add a NULL character (x0000) to the end of the string.
- Call PUTS with the starting address of the string (x3100) to output the string to the display.
- Halt the processor.
Here is an example implementation of the GETS program in LC-3 assembly language:
CODE:
; GETS program
; Prompts user for a string and stores it in memory
; Program start address
.ORIG x3000
; Main routine
GETS
; Load the start address for the string
LD R0, STR_START
; Load the next character from the keyboard into RO
LEA R1, GETC
TRAP x20
; Check if the character is "Enter" (x0A)
BRz END_GETS
; Store the character at the memory location pointed by R0
ST R1, 0(R0)
; Increment the memory location
ADD R0, R0, 1
; Repeat the process
BR GETS
END_GETS
; Store the NULL character at the end of the string
LD R1, NULL
ST R1, 0(R0)
; Output the stored string
LEA R0, STR_START
LEA R1, PUTS
TRAP x22
; Halting the processor
HALT
; Data definitions
STR_START .FILL x3100
NULL .FILL x0000
GETC .STRINGZ "Enter string to echo: "
PUTS .STRINGZ "\nEcho string: "
.END
OR
OR
OR
CODE:
; Load the starting address of the string into RO
LD R0, STRING_START
; Prompt the user to enter a string
LEA R1, PROMPT
PUTS
; Use a loop to get characters from the user
GETS_LOOP
GETC
STR R0, R1, 0
ADD R0, R0, #1
BRz GETS_END
BR GETS_LOOP
; Add a NULL character to the end of the string
GETS_END
LD R1, x0000
STR R0, R1, 0
; Output the string to the display
LD R0, STRING_START
PUTS
; Halt the processor
HALT
; Constants
PROMPT .STRINGZ "Enter string to echo: "
STRING_START .FILL x3100
Trending now
This is a popular solution!
Step by step
Solved in 2 steps