answersLogoWhite

0

we can do this using two techniques:

here i m assuming that two number which is to be multiplied are given..

say 05H and 04H,

so coz 5*4 = 5+5+5+5 = 20

and 4*5 = 4+4+4+4+4 = 20

use this concept ...

MVI A,05H;

MVI B,04H;

L1:

ADD A;

DCR B;

JNZ : L1;

STA 2004H;

HLTType your answer here...

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you write an assembly language program to find the sum of n numbers using array?

write an assembly language program to find sum of N numbers


Write an assembly language program to multiply two BCD numbers?

fish


Example of Password program code in assembly language?

How to write the program un Assembly language to set a password for personal computers?


Write a program in 8086 assembly language to draw a circle?

You need an 8086 assembly language pencil.


Assembly language program for string concatenation using 8086 microprocessor?

write program to concatenating two sting in 8086 assembly language


Write an assembly language program to print a to z on screen?

write a program to print A to Z on screen in c?


How would you define assembly language?

assembly language uses abbreviation called menmonics.it is a bit easier to write computer programs in assembly language as compared to machine language but still requires skill and experienci.A program called assembler is used to convert an assembly language into machine language.


How do you write a program in 8085?

Either in Assembly or in some high level language/the hex-code (for the mnemonics) that the microprocessor 8085 generally understands.


Write an Assembly language program which implements sorting algorithm both ascending and descending order and display those numbers with certain delay say of 5sec between successive displays?

das


Could you write a assembly language program in tasm To check whether a given number present in a sequence of given memory location containing the string to be checked in 8086?

8086 assembly language program to check wether given number is perfect or not


How do you write a program in assembly language for 2's component?

That's what opcode 'NEG' does on some processors.Can be emulated with a 'NOT' and an 'INC'.


Write a program using 8086 instructions to double a number?

There isn't a reason to write a complete program to do this; in any assembly language just shift the value 1 bit to the left to double it.