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

JBE in Assembly:

                                                Jump if below or equal.
JBE means
Write a program that show working of JBE.

.model small
.data
m1 db "jbe Not JUMP$"
m2 db"Jbe JUMP$"
.code
mov ax,@data
mov ds,ax
mov bx,433
mov cx,44
cmp bx,cx
jbe 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

JBE in Assembly:

×

Subscribe to Ar Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×