ok so i was playing around with asm and did this simple program:
.model small
.stack 100h
.data
sum dw ?
.code
extrn Writeint:proc, Crlf:proc
main proc
mov ax,@data
mov ds,ax
mov dx,1
mov bx,10
mov ax,0
L1:
add ax,dx
add dx,dx
mov sum,ax
call Writeint
call Crlf
loop L1
mov ax,4c00h
int 21h...