8086 program to divide 2 16 bit numbers- 8086 16Bit division assembly program
data segment
num1 dw 2800h
num2 dw 0002h
result1 dw ?
data ends
code segment
start :
assume cs:code, ds:data
mov ax,data
mov ds,ax
mov ax,num1
mov bx,num2
div bx
mov result1,ax
mov ah,4ch
int21h
code ends
end start
Block transfer OVERLAPPING
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
For many other Language Programs of microprocessor 8086, C++ , Data Structures , etc and MSBTE diploma,BCA,MCA and engineering related concepts visit our BLOG
No comments:
Post a Comment