Assembly Program Code for 8 Bit Multiplication - 8051 - AT89C51 - Keil - ASM


Flowchart:-


Program:-

ORG 0000H
MOV R0,#30H
MOV A,@R0
Mov R1,#40H
Mov B,@R1
MUL AB
MOV R1,#60H
MOV @R1,A
INC R1
MOV @RI,B
HERE: SJMP HERE
END

Output:-


For more ASM programs - click here


Popular posts from this blog

8051 Assembly Program Code for Sorting in Descending Order - Keil - AT89C51

8051 Assembly Program Code for Sorting in Ascending Order - Keil -AT89C51