Logo 
Search:

Assembly Language Articles

Submit Article
Home » Articles » Assembly Language » Homework HelpRSS Feeds

Program for divide 10 of array by 10 and check each greater than 10 add 10 and each greater than 20 add 50

Posted By: Brand Fischer     Category: Assembly Language     Views: 2535

Write to program for divide 10 of array by 10 and
check each greater than 10 add 10 and
each greater than 20 add 50.

Code for Program for divide 10 of array by 10 and check each greater than 10 add 10 and each greater than 20 add 50 in Assembly Language

data segment
    ar dw 0100h,0200h,0300h,0250h,0150h,0160h,0270h,0280h,0190h,0100h
data ends

.model small
.code
begin:
    mov ax, @data
    mov ds, ax    
    mov es, ax
    lea si, ar
    
counter:
    
    

loop counter    
    
exit:
    .exit

end begin
  
Share: 



Brand Fischer
Brand Fischer author of Program for divide 10 of array by 10 and check each greater than 10 add 10 and each greater than 20 add 50 is from Frankfurt, Germany.
 
View All Articles

Related Articles and Code:


 

Other Interesting Articles in Assembly Language:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!