Hey!!
Today we will see microprocessor program to find the Sum of Series of 16 bit bcd number using assembly language 8086.
Let's go!!
data segment
array1 dw 5000h,3000h,4000h,6000h,1000h
sum dw ?
data ends
code segment
start :
assume cs:code, ds:data
mov ax,data
mov ds,ax
mov cl,04h
mov si, offset array1
mov ax,[si]
next: inc si
add ax,[si]
daa
dec cl
jnz next
mov sum,ax
mov ah,4ch
int 21h
code ends
end start
Programs:-
For many other Language Programs of microprocessor 8086, C++ , Data Structures , etc and MSBTE diploma and engineering related concepts visit our BLOG
Block transfer(Simple Program)
Block Transfer(REVERSE ORDER)
Addition of 8-bit BCD8086 program
addition of 16-bit bcd program
Division of 32/16 bit program
Subtraction of 8-bit program
Subtraction of 8-bit BCD program
Subtraction of 16-bit program
Subtraction of 16-bit BCD program
String reverse 8086 program
block transfer using string
string concatenation
string length calculation
Block Transfer
Block reverse
Hex to ASCII program 8086
BCD to ASCII program 8086
ASCII to BCD program 8086
BCD to HEX
HEX to BCD
Block Transfer(REVERSE ORDER)
Addition of 8-bit BCD8086 program
addition of 16-bit bcd program
Division of 32/16 bit program
Subtraction of 8-bit program
Subtraction of 8-bit BCD program
Subtraction of 16-bit program
Subtraction of 16-bit BCD program
String reverse 8086 program
block transfer using string
string concatenation
string length calculation
Block Transfer
Block reverse
Hex to ASCII program 8086
BCD to ASCII program 8086
ASCII to BCD program 8086
BCD to HEX
HEX to BCD
8086 Program to subtract two 16-bit BCD numbers MICROPROCESSOR 8086
8086 program to divide 8 bit hexadecimal number
8086 Program for Addition of two 8 bit Hexadecimal numbers microprocessor
8086 program to add two 8 bit BCD numbers
Assembly Language Program to DIVISION two 32-bit / 16 –bit numbers 8086 (signed and unsigned)
8086 program to divide 8 bit hexadecimal number
8086 Program for Addition of two 8 bit Hexadecimal numbers microprocessor
8086 program to add two 8 bit BCD numbers
Assembly Language Program to DIVISION two 32-bit / 16 –bit numbers 8086 (signed and unsigned)
No comments:
Post a Comment