Computer Science, asked by somun78, 5 months ago

Write a program in 8086 assembly language to find the cube of a given number?​

Answers

Answered by adarshch9989
0

Answer:

Store 500 to SI and Load data from offset 500 to register CL and set register CH to 00 (for count).

Increase the value of SI by 1.

Load number(value) from offset SI to register AL.

Move the value of register AL to BL.

Multiply the value in register AL by itself.

Multiply the value in register AL by BL.

Similar questions