Arnab Chakraborty has Published 4282 Articles

Program to multiply two 16-bit binary numbers in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 07:18:22

1K+ Views

Here we will see one program for Intel 8085 Microprocessor. This program will calculate the multiplication of two 16-bit numbers.Problem Statement −Write an 8085 Assembly language program to multiply two 16-bit numbers stored at 8000H - 8001H and 8002H - 8003H.Discussion −This program takes the 16 bit data from memory location 8000H ... Read More

Program to multiply two 2-digit BCD numbers in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 07:14:56

729 Views

Here we will see 8085 Microprocessor program, that will find the multiplication result of two BCD numbers.Problem Statement −Write an 8085 Assembly language program to find two BCD number multiplication. The numbers are stored at location 8000H and 8001H.Discussion −In this program the data are taken from 8000H and 8001H. The result ... Read More

Program to multiply two 8-bit numbers (shift and add method) in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 07:12:17

940 Views

Let us see one 8085 Microprocessor problem. In this problem we will see how to multiply two numbers using shift and add methods, not by using additive approach.Problem Statement −Write an 8085 Assembly language program to multiply two 8-bit numbers using shift and add method.Discussion −The shift and add method is an ... Read More

Program to add the contents of N word locations in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 07:10:00

384 Views

Here we will see one 8085 Microprocessor program. This program will add the contents of N word locations.Problem Statement −Write an 8085 Assembly language program to add N 16-bit numbers stored into memoryDiscussion −The 16-bit numbers are stored into memory location 8001H onwards. The value of N is stored at location 8000H. ... Read More

Program to perform selection sort in descending order in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 07:07:59

400 Views

Here we will see one 8085 Microprocessor program. This program will sort a sequence of numbers in reverse order using selection sort technique.Problem Statement −Write an 8085 Assembly language program to sort a given sequence using selection sort in descending order. The numbers are stored at 8001H onwards. 8000H is holding ... Read More

Program to perform selection sort in ascending order in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 07:04:27

532 Views

Here we will see one 8085 Microprocessor program. In this program we will see how to sort a sequence of numbers using selection sort.Problem Statement −Write an 8085 Assembly language program to sort a given sequence using selection sort in ascending order. The numbers are stored at 8001H onwards. 8000H is ... Read More

Program to perform bubble sort based on choice in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 07:00:44

524 Views

Here we will see one 8085 microprocessor program that will help to arrange the numbers in ascending or descending order based on our choice. Sort using bubble sort technique.Problem Statement −Write an 8085 Assembly language program to perform bubble sorting operation on a set of data, and arrange them into ascending ... Read More

Program to perform bubble sort in ascending order in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 06:57:41

644 Views

Here we will see one 8085 program to arrange a block of numbers in ascending order.Problem Statement −Write an 8085 program to sort numbers in ascending order where n number of numbers are stored in consecutive memory locations starting from 8041H and the value of n is available in memory location ... Read More

Program to do an operation on two BCD numbers based on the contents of X in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 06:55:46

483 Views

Here we will see one 8085 program. This program will perform different operations on BCD numbers based on choice.Problem Statement −Write an 8085 Assembly language program to perform some operations on two 8-bit BCD numbers base on our choice.Discussion −In this program we are taking a choice. The choice value is stored ... Read More

Program to convert a 16-bit binary number to BCD in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 09-Oct-2019 06:52:47

757 Views

Here we will see one 8085 Microprocessor program. This program will be used to convert 16-bit binary data to BCD data.Problem Statement −Write an 8085 Assembly language program to convert 16-bit binary data to BCD data. The binary data is stored at location 8000H and 8001H.Discussion −This problem is solved by implementing ... Read More

Advertisements