วันพุธที่ 8 มีนาคม พ.ศ. 2560

Assembly code [ แสดงสั่งกระโดด ]

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






ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Install SonarQube on windows 11 and scan quility source code on local machine

 Download SonarQube on web  www.sonarsource.com Extract File Copy Folder to new directory , If you want to move. Go to Dowload load jdk ver ...