Aim: - To write an assembly language program to find sum of cubes of given 'n' numbers.
1
2
3
4
5
6
7
8
9
MOV CL, NUM
MOV SUM, 00
L1: MOV AL, CL
MUL AL
MUL CL
ADD AL, SUM
MOV SUM, AL
LOOP L1
END
Result: Sum of cubes of first 'n' natural numbers is obtained.
Assembly langue is translated into machine language by an assembler.
An assembly program is a machine-dependent program written in a low-level symbolic code known as assembly language.
use of reserved word in assembly language
How to write the program un Assembly language to set a password for personal computers?
An Assembler converts assembly language instructions into machine language.
Assembly langue is translated into machine language by an assembler.
an assembly language program of traffic light
An assembly program is a machine-dependent program written in a low-level symbolic code known as assembly language.
use of reserved word in assembly language
How to write the program un Assembly language to set a password for personal computers?
write program to concatenating two sting in 8086 assembly language
You need an 8086 assembly language pencil.
The only translation program that converts assembly language to machine code is an assembler.
You will need to have a little bit of computer science knowledge. This will help you to make the programing.
write an assembly language program to find sum of N numbers
An Assembler converts assembly language instructions into machine language.
You cannot generate machine code from assembly language without running a program (an assembler). Therefore the machine that generates the machine code must be operational and must be running an assembler program that is appropriate to the target platform. The machine code output from the assembler can then be loaded onto the target platform and executed.