Wednesday, June 3, 2020

8086 Assembly Language for multiplication of 2 8-bit nos

For many other Assembly Language  Programs related to microprocessor 8086, c, c++, and more  visit our  BLOG 

Program to MULTPLY two 8-bit  BCD numbers :-
data segment
no1 db 02h
no2 db 03h
ans db ?
data ends
code segment
start : assume  cs :code,  ds :data
mov ax ,data
mov ds , ax
mov al , no1
mov bl ,no2
MUL  b1
AAM
mov ans ,al
mov ah ,4ch
int 21h
code ends
end start




Programs:-

For many other Assembly Language  Programs related to microprocessor 8086, programs of c++, vb. Net and more  visit our  BLOG 
There are programs of largest ,smallest ,division ,multiplication,odd/even,block operation ,string operations,BCD ,etc


No comments:

Post a Comment