Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

JLE in Assembly:

                                                  Jump if less or equal:
JLE means
Write a program that show working of  JLE.

.model small
.data
m1 db "jle Not JUMP$"
m2 db"Jle JUMP$"
.code
mov ax,@data
mov ds,ax
mov bx,433
mov cx,44
cmp bx,cx
jle A
mov ah,09h
mov dx,offset m1
int 21h
jmp B
A:
mov ah,09h
mov dx,offset m2
int 21h
B:
.exit
end

OUTPUT:






This post first appeared on AR Programming, please read the originial post: here

Share the post

JLE in Assembly:

×

Subscribe to Ar Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×