answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a program using 8086 instructions to double a number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a program to convert a 2 digit BCD number into hexadecimal number?

Write a program to convert a 2-digit BCD number into hexadecimal


What are the individual instructions that you use to write a program in a high-level programming language called?

Statements.


2 Write a program to convert a 2-digit BCD number into hexadecimal?

WRITE A PROGRAM TO CONVERT A 2-DIGIT bcd NUMBER INTO HEXADECIMAL


What is nature language?

A program that understand what a human would write and be able to transform that into instructions that a computer could understand.


What is natural interpretation?

A program that understand what a human would write and be able to transform that into instructions that a computer could understand.


Write a program which takes any number of days from the user the program should display the number of years number of months formed by these days as well as the remaining days?

Write a program which takes any number of days from the user. the program should display the number of years, number of months formed by these days as well as the remaining days.


Write a program that read and display double number?

class simple { public static void main(String[] args){System.out.println(new java.util.Scanner(System.in).nextDouble());} }


How do you write a c program to convert binary to decimal by using while statement?

write a c++ program to convert binary number to decimal number by using while statement


How is the maars taught to perform its task?

it's not actually 'taught'. The scientists write a computer program to tell the rover what to do - and send the program by radio to Mars. The rover receives the program, and follows the instructions.


Write a program that read phrase and print the number of lower-case letter in it using function of counting?

write a program that reads a phrase and prints the number of lowercase latters in it using a function for counting? in C program


What is natural language interpreter?

A program that understand what a human would write and be able to transform that into instructions that a computer could understand.


How do you write a c program to find area of rectangle using function?

There will be a function in it like this: double RectangleArea (double a, double b) { return a*b; }