Do an assembly language programming to find whether given eight bit number is odd or even. If odd store 00h in accumulator. If even store FFh in accumulator

ORG 0000H

MOV A,#31H

MOV B,#02H

DIV AB

MOV R3,B

CJNE R3,#00H,NEXT

MOV A,#0FFH

SJMP L1

NEXT:

MOV A,#00H

L1:

END

Comments

Popular posts from this blog

Wire wound strain gauge

SemiConductor type strain gauge

Do an ALP to compare two eight bit numbers NUM1 and NUM2 stored in external memory locations 8000h and 8001h respectively. Reflect your result as: If NUM1NUM2, SET MSB of location 2FH (bit address 7FH). If NUM1 = NUM2, then Clear both LSB & MSB of bit addressable memory location 2FH.