answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Why you are using mov in microprocessor?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Do a program to find a smallest number in the array using 8085 microprocessor?

Lxih, 2200 mov c,m inxh mov a,m inxh cmp m jc l1 mov a,m dcr c jnz l2 inhx mov m,a hlt


Which instruction in 8086 microprocessor is 6 bytes long?

mov


Can you give sample 8086 microprocessor programs?

Mov ax,1234 mov bx,2345 add ax,bx mov @(some memory location ) say 2200,ax hlt


MOV D IN Microprocessor means?

MOV D,reg means: move content of the specified register (or M=memory addressed with HL) into register D


Write a 8085 microprocessor program to check whether a give number is even or odd?

Lxi h, 2000h mov a,m mov b,a inx h mov a,m add b sta 2002h hlt


Write program to find the cube of a number using 8085 microprocessor?

4000 lda 50003a,00,504003 mvi b 0206,024005 mov c,a4f4006 mov d,a574007loop2mvi a 003e,004009loop1add d82400a dcr c0d400b jnz loop1c2,09,40400e mov c,a4f400f dcr b054010 jnz loop2c2,07,404013 mov a,c794014 sta 500532,05,504017 hlt76 enjoy dear friends :) by abin james nellanikattu


What is the simple program for 8bit addition using 8085 microprocessor?

Suppose you want to add 11 and 12.instruction are : mvi a,11h mvi b ,12h mov d,b add b


What is the use of command MOV A A in 8085 microprocessor?

The MOV A,A instruction in the 8085 does nothing, not even change flags. It only consumes time, specifically four clock cycles plus applicable wait states.


Find given numbers odd or even in 8085 microprocessor assembly language?

.model small .stack .data m db 'the no is odd $' m1 db 'the no is even $' a db 04h b db 02h .code mov ax,@data mov ds,ax mov ah,0 mov al,a mov bl,b div bl cmp ah,00h je l1 mov dx,offset m jmp l l1: mov dx,offset m1 jmp l l: mov ah,09 int 21h mov ah,4ch int 21h end


What is 1 byte instruction in microprocessor?

1byte instruction = MOV A,B 2byte instruction = MVI A,01H 3byte instruction = STA 2030H


How many ic's used in the microprocessor?

we are using just one ic in a microprocessor


Write division of two 8 bit number using assembly language of Intel 8086?

Mov ax,[2020h] mov bx,[2022h] mul bl mov [2024h],ax hlt