Loop Iterations


Write an assembly language program that simualtes the following program:
writeln('Enter multiple');
readln(mult);
writeln('Enter ending value');
readln(stop);
for i:= 1 to stop do
	writeln(i*mult);