Engineering Assignment Sample on An Assignment on Microcontroller

Post on 22-Mar-2017

76 views 2 download

Transcript of Engineering Assignment Sample on An Assignment on Microcontroller

An Assignment on Microcontroller

Question & Answers

Published by: https://assignmentessayhelp.com/

Filename: 1SAMPLE16C123-An-Assignment-on-Microcontroller.pdf

For more assistance visit: https://assignmentessayhelp.com/engineering-assignment-help/

Uploaded: May 26, 2016

Enjoy

Abstract

A microprocessor system has RAM from locations $00 to $ FF. Write a program that will

write a value of $ A5 to each of the locations in RAM.

Answer:

LDA $ A5 : "Get the contents of memory location $ A5 into accumulator"

STA $ 00 : "Copy accumulator contents at address $ 00"

:

:

STA $ FF : "Copy accumulator contents at address $ FF"

HLT : "Terminate program execution"