Ex. 3 แสดงสั่งกระโดด
.model small
.data
msg1 db 'AL more than CL','$'
msg2 db 'AL less than CL','$'
.code
start:
mov ax,@data
mov ds,ax
mov al,5
mov cl,0
cmp al,cl
jg more
lea dx,msg2
mov ah,9
int 21h
more:
lea dx,msg1
mov ah,9
int 21h
mov ax,4C00h ;exit
int 21h
end start
ไม่มีความคิดเห็น:
แสดงความคิดเห็น