Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write an assembly code which can call function in a loop
with al value from 0 to 9

Answers were Sorted based on User's Feedback



write an assembly code which can call function in a loop with al value from 0 to 9..

Answer / laxman

org 00h
mov r0,#09
mov r1,#01
loop : acall func; ; calling function in loop 9-0 times
djnz r0,loop


func : inc r1 ; output will be in r1 register
ret

end


if any thing plz mail to me laxman_balu@hotmail.com

Is This Answer Correct ?    8 Yes 1 No

write an assembly code which can call function in a loop with al value from 0 to 9..

Answer / dinesh kumar.r

MVI B,00
MVI C,OA
LOOP:
INR B
DCR C
SUB C
JNZ LOOP
HLT

Is This Answer Correct ?    2 Yes 1 No

write an assembly code which can call function in a loop with al value from 0 to 9..

Answer / sivasyam

mov ro,#10h

here:
acall fun
inc a1
djnz ro,here

Is This Answer Correct ?    5 Yes 5 No

write an assembly code which can call function in a loop with al value from 0 to 9..

Answer / sridevi

Mr.Lakshman, I found some changes in your code. Hope this is OK.

org 00h
mov r0,#00
mov r1,#00
loop : acall func
inc r0
cjne r0,#09,loop
jmp pgmend

func: inc r1
ret

pgmend:
end

Is This Answer Correct ?    2 Yes 2 No

write an assembly code which can call function in a loop with al value from 0 to 9..

Answer / pk

xor ax, ax
loop1:
call foo
inc al
cmp ax, 10
jb loop1

Is This Answer Correct ?    3 Yes 4 No

Post New Answer

More 86 Family Interview Questions

What is the the total addressable memory size in a 8085 microprocessor?

0 Answers  


Design a divide-by-3 sequential circuit with 50% duty circle now?

0 Answers  


List the various registers of 8085?

0 Answers  


How much total external data memory that can be interfaced to the 8051?

0 Answers  


What are the four distinct types of memory in 8051?

0 Answers  


what do you mean by embedded system?

37 Answers   Bell, College School Exams Tests, Falcon Electro, HCL, Micron Electricals, Wipro,


What is the difference between MOV and MVI?

15 Answers  


Which line will be activated when an output device require attention from CPU?

4 Answers  


What is 8051 microcontroller ?

0 Answers  


Give a circuit to divide frequency of clock cycle by two ?

6 Answers  


Why do you use two ground pins in microprocessor 8086?

0 Answers  


Define the types of memory used in 8085 microprocessor?

0 Answers  


Categories