Reference no: EM13720027
Lab Objective
- Using the stack to store data
- Writing programs using subroutines
- Parameter passing using the stack
Procedure:
Part I: Using the stack to store data
Complete the following program to store the listed data into the RAM locations starting at $3000 using the stack pointer and the PUSH command. Use memory dump (md) command to see the data stored at the memory locations and include in your lab report.
Data: $55AA, $6811, $6CA0, $1ABC, $5AB3
ORG
|
$2000
|
LDS
|
#$3000
|
LDX
|
#$55AA
|
PSHX
|
|
LDX
|
|
.
|
|
.
|
|
PULX
|
|
SWI
|
|
- Add comments for each assembly line in your report. Include a screen shot of data stored. You can use md 2FF0 to see data stored in memory. Why?
- Why index register X has been used to load data and not ACCA?
- Does the high byte store first or the low byte?
- What data index register X will contain at the end of the program?
Part II: Subroutines
Write a program that finds the square of a number listed below in a subroutine and stores the results into the memory locations $2100-$2104. Complete the following program and use memory dump (md) to see the result obtained. Do not forget to add comments to the each program line and explain its operation.
Hint: Multiplying a number by itself will make it square. You can also get some idea from the program on page 117 of the textbook.
Numbers: $0A, $0C, $0B, $0F
ORG
|
$2000
|
LDS
|
#$3000
|
LDX
|
#$55AA
|
PSHX
|
|
LDX
|
|
.
|
|
.
|
|
PULX
|
|
SWI
|
|
SQUARE:
.
TAB
MUL
.
RTS
Part III: Parameter passing using the stack
Write a program to send the following listed data stored at memory locations $2100-$210F to a subroutine that adds them up. Store the result at memory location $21FF. Use "md" to see the result and include in your report.
Data (numbers are in decimal): 10,15,34,4,5,6,9,23,38,2,11,14,15,9,7
Do not forget to include a screen shot of the program with zero compilation error and load to the board successfully.
Assignment-goal write-up
: A number of years have passed since the writing of The Goal. Since then, developments in both technology and operations management theory have changed the toolset that is available to a plant manager like Alex Rogo (e.g.; lean, six sigma, the inte..
|
What is the net saving or loss and the benefits
: Calculate saving for all categories in yr 2,3,and 4 taking yrs 1 as a based also total incremental saving from higher employee retention for all personnel categories - what is the net saving or loss and the benefits/cost ratio
|
Case study- phionia''s finicky feline gourmet cat dinners
: Mini-case study- Phionia's finicky feline gourmet cat dinners, Sales budget in dollars, Production budget in units
|
Gender inequality in the workplace-sexual harassment
: Use and add the real life situation provided below to write this paper. Provide examples to explain the behaviors, and use researched material to support your reasoning.
|
Program to send the listed data stored at memory locations
: Write a program to send the listed data stored at memory locations $2100-$210F to a subroutine that adds them up. Store the result at memory location
|
Assume the van der Waals equation of state holds
: Assume the van der Waals equation of state holds for the n-propane molecule (C3H8). Find values for the constants a and b (online) and use these to calculate the density in (g ml^-1) at a temperature of 1000K and a pressure of 10 atm. The equation or..
|
Strategy for kodak-the rise and fall of eastman kodak
: Review Case study "The rise and fall of Eastman Kodak: Will it survive beyond 2012?" located in the textbook. Assume that you have been hired by Kodak as a business consultant to recommend a new corporate-level strategy for the company to improve ..
|
Particular method to handle stress
: Discuss on what basis should the organization choose a particular method to handle stress?
|
Implement a state-space search
: You will implement a state-space search that will find a solution to the sixteenpuzzle. For this program, in addition to the state-space search control, you will need to implement at least two other classes
|