Question
The goal of this lab is to familiarize you with assembly language programs. You need to work in teams of 2 to complete this lab.
The goal of this lab is to familiarize you with assembly language programs. You need to work in teams of 2 to complete this lab. You need to modify the class example "Copying a String" at the end of the Assembly Language II lecture. You need to modify the example program so it copies from the end of the source string and stores the copied values starting at the beginning of the target (destination) string. The target string should be the reversed version of the source string. For example, the program should take a source string of "RCGC CSC203" and create a target string "302CSC CGCR". You cannot use the stack push and pop operations for this assignment. The purpose of this assignment is to learn how to use a loop and arrays. Requirements:
Display source string on the screen.
Use a LOOP instruction to build a loop used to copy a character at a time from the source to the destination.
Finally, display the target (destination) string on the screen.
Place a comment at the beginning of your program with your names and date completed.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started