answersLogoWhite

0

What is loop1 and loop2 in MTS LT?

Updated: 9/26/2023
User Avatar

Wiki User

7y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is loop1 and loop2 in MTS LT?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a basic program to sort ten numbers?

DIM nums(10) CLS FOR i = 0 TO 9 nums(i) = (RND * 10) + 1 PRINT nums(i) NEXT PRINT : PRINT "Press Enter to sort numbers" rem pause to look at numbers DO WHILE INKEY$ = "": LOOP CLS FOR loop1 = 0 TO 9 FOR loop2 = loop1 + 1 TO 9 IF nums(loop1) > nums(loop2) THEN SWAP nums(loop1), nums(loop2) NEXT NEXT FOR i = 0 TO 9: PRINT nums(i): NEXT


What mountains are in the Sahara Desert?

Ahaggar mts. and Marra mts.


When was MTS Iceplex created?

MTS Iceplex was created in 2010.


How far in yards is 900 mts?

984 yards, if that is what mts is


When was MTS India created?

MTS India was created in 2008-12.


Give the program for finding smallest number in 8085 microprocessor?

.model small .stack 64 .data n1 db 08h,02h res db ? .code mov ax,@data mov ds,ax mov cx,02 lea si,n1 mov bl,0ffh mine:mov al,[si] cmp al,bl jne loop1 jmp loop2 loop1:jnc loop2 mov bl,al inc si loop mine jmp exit loop2:inc si loop mine exit:mov res,bl hlt end


Which mountain range is higher the rocky mts or the appalation mts?

Appalachian mountains


When was MTS M-Blaze created?

MTS M-Blaze was created in 2008.


What is MTS Systems Corporation's population?

MTS Systems Corporation's population is 2,003.


When was MTS Systems Corporation created?

MTS Systems Corporation was created in 1966.


How tall is the kjolen mts?

please tell me how tall are the kjo;en mts.


Write a program to store block of data in reverse order in a memory block using 8085 microprocessor?

A possible program to reverse a block of memory using the 8085... PUSH F SAVE PROCESSOR STATE - OPTIONAL PUSH B PUSH D PUSH H LXI H,{address of block} MOV D,H SAVE BLOCK ADDRESS MOV E,H MVI A,{size of block} MOV C,A SAVE BLOCK SIZE LOOP1: MOV A,M GET DATA BYTE PUSH F PUSH ON STACK DCR C DECREMENT LOOP COUNT XRA A TEST FOR END OF LOOP CMP C JNZ LOOP1 MOV H,D RESTORE BLOCK ADDRESS MOV L,E MOVE C,B RESTORE BLOCK SIZE LOOP2: POP F POP FROM STACK MOV M,A PUT DATA BYTE DCR C DECREMENT LOOP COUNT XRA A TEST FOR END OF LOOP CMP C JNZ LOOP2 POP H RESTORE PROCESSOR STATE - OPTIONAL POP D POP B POP F