FY-1-a Easy program to store one byte data into memory location

8085 Program to store one byte data into memory location

Following easy and simple 8085 program will store 8 bit data in memory locations.

You will find explanation below the code.

MVI A 32           # A = 32 || 0700=N.A.
STA 0700 # A = 32 || 0700 =32
HLT

MVI A 32 – 16 bits (2 bytes) command which will load register A i.e. Accumulator with 8 bit data. MVI means Move Immediate.

STA 0700 – STA means Store Accumulator’s content in memory location.

HTL – It means Halt the microprocessor.

Program to store the 8 bit data into memory location

Video coming soon…

Click here to check out FYIT OOP practical 

Checkout Other Microprocessor Architecture Practical Program

Checkout Other Microprocessor Architecture Quiz

Microprocessor, microcomputers, and Assembly Language
1 – Best Microprocessor Architecture Quiz on chapter 1
2 – Best Quiz on Microprocessor Architecture chapter 1
Introduction to 8085 Assembly Language Programming
1 – Easy Quiz on 8085 Assembly Language Programming
2 – Easy Quiz on 8085 Assembly Language Programming
Microprocessor Architecture and Microcomputer System
1 – Easy Microprocessor Architecture and Microcomputer System Quiz
8085 Microprocessor Architecture and Memory Interface
1 – Easy quiz on 8085 Microprocessor Architecture and Memory Interfacing
Interfacing of I/O Devices
1 – Easy quiz on 8085 Interfacing of I/O Devices
Introduction to 8085 Instructions
1 – Easy quiz on 8085 Instructions
More coming soon… stay tune
We are aiming to explain all concepts of Microprocessor Architecture in easiest terms as possible.
ITVoyagers-logo
ITVoyagers
Author

Leave a Comment