Membuat Program Stack pada Assembly


.model small
.code
org 100h
mulai:

mov bl,10
mov al,38
div bl
push ax
mov dl,al
add dl,30h
mov ah,2
int 21h

pop ax
mov dl,ah
mov ah,2
add dl,30h
int 21h

int 20h

end mulai

output :
Program Stack

No comments:

Post a Comment