answersLogoWhite

0


Best Answer

To multiply a number by 4, do a left shift twice. If the number is in the accumulator, do...

RAL

RAL

XRI 0FCH

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write an assembly program to multiply a numberr by 4?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write an assembly language program to multiply two BCD numbers?

fish


Write a program to multiply 33 matrix.?

write a program to multily 3*3 matrix.


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 print a to z on screen?

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


Example of Password program code in assembly language?

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


Assembly language program for string concatenation using 8086 microprocessor?

write program to concatenating two sting in 8086 assembly language


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

You need an 8086 assembly language pencil.


Write an assembly language program to multiply an 8-bit signed number by a 8-bit signed number?

MVI A, 30h MVI B 20h MUL A,B OUT port1 HLT


How do you write a program that will call a function to multiply 4 numbers and return the answer to main program?

In Windows, use notepad.exe; in linux, use program xedit.


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.


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.


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'.