Aim: – To write an assembly language program to find sum of squares of given ‘n’ numbers.
1 2 3 4 5 6 7 8 | MOV CL, NUM MOV SUM, 00 L1: MOV AL, CL MUL AL ADD AL, SUM MOV SUM, AL LOOP L1 END |
Result: Sum of squares of first ‘n’ natural numbers is obtained.