KONSEP PENAMBAHAN DALAM ASSEMBLY
.model small
.code
org 100h
mulai:
mov ax,115
mov bx,100
add ax,bx
mov bx,10
xor cx,cx
ulang:
xor dx,dx
div bx
push dx
inc cx
cmp ax,0
jne ulang
cetak:
pop dx
add dl,'0'
call cetak_k
loop cetak
int 20h
cetak_k proc near
mov ah,02
int 21h
ret
cetak_k endp
end mulai
HASIL : 215
Hari yang dingin... Brrrr...