Skip to content

Tag Archives: microprocessor

Prerequisite – Bubble Sort Problem – Write an assembly language program in 8085 microprocessor to sort a given list of n numbers using Bubble Sort.  Example… Read More
Introduction : Logical instructions in the 8086 microprocessor are instructions that perform logical operations on data stored in registers or memory locations. These instructions can… Read More
Problem – Write an assembly language program to find smallest number between two number’s.  Example –    Algorithm –   Load the content from memory location  … Read More
Problem: Write an assembly language program to transfer a block of bytes from one memory location to another memory location by using string instruction.  Example:… Read More
Introduction : Data transfer instructions in the 8086 microprocessor are used to move data between memory locations, registers, and input/output (I/O) devices. These instructions are… Read More
Problem – Write a program to transfer a block of 4 bytes, starting address is 0500 and transfer the block at address 0600 by using… Read More
Problem – Write a program to convert ASCII to BCD 8-bit number where starting address is 2000 and the number is stored at 2050 memory… Read More
Problem – Write a program to add 2-BCD numbers where starting address is 2000 and the numbers is stored at 2500 and 2501 memory addresses… Read More
Problem – Write an Assembly Language Program to find sum of odd numbers in a given series containing 8 bit numbers stored in a continuous… Read More
Problem – Write an assembly language program in 8085 microprocessor to find 2’s complement of the contents of Flag Register. Example – Algorithm – Initialize… Read More
Prerequisite – Binary to/from Gray Code Problem – Write a program to convert Binary number to Grey code 8-bit number where starting address is 2000… Read More
Problem – Write an assembly language program in 8085 microprocessor to convert gray numbers to binary. Example – Algorithm – Load the data from address… Read More
Problem – Write a program in 8085 microprocessor to find out larger of two 8-bit numbers, where numbers are stored in memory address 2050 and… Read More
Arithmetic Instructions are the instructions which perform basic arithmetic operations such as addition, subtraction and a few more. Unlike in 8085 microprocessor, in 8086 microprocessor… Read More
Problem – Write an assembly language program in 8086 microprocessor to find square root of a number. Example – Algorithm – Move the input data… Read More