Write a program for 8-bit multiplication of binary numbers [SPPU SEM-3 E&TC]
1 min readDec 12, 2018
“ From now on, I'm going to post several important questions and answers from Pune University ”
answer
MOV A, #8F ; get the first number in register A
MOV B, #79 ; get the second number in register B
MUL AB ; A *B, higher bytes of result in B and lower bytes of the result in A