Monday, September 6, 2021

8086 ASSEMBLY PROGRAM TO FIND sum of series OF NUMBERS/ARRAY/SERIES

 

arrayS db 01h, 08h,09h, 04h,05h02h,03h,06h,07h ,0AH   (10 numbers)

count dw 0AH

data ends

code segment

start :

assume cs:code, ds:data

mov ax,data

mov ds,ax

mov cx,count

mov si, offset arrayS

l :mov al,[si]

add al,[si]

jnc next1

next: inc si

loop l

mov ah,4ch

int 21h

code ends

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

 

 

Programs:-

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