Text

Sunday, 3 June 2012

mencetak huruf dan mengurutkannya secara dec (TASM)

.model small
.code
org 100h
mulai :
mov ah, 2h
mov dl, 'M'
mov cx, 13
ulang :
int 21h
dec dl
loop ulang
int 20h
end mulai

No comments:

Post a Comment