How jng works in assembly? -


i need make sub if bl>7fh
code i'm using is:

cmp bl,7fh jng  here sub bl,bl here: 

i know bl>7fh because bl=92 , jng jump if bl not greater than 7fh
in case bl greater 7fh why jumps?!

the condition jng signed not greater than. depending on whether meant 92 or 92h either 92 or -110 when interpreted signed byte. in case, that's less 127 (7fh), means jng should jump.

what want unsigned not greater (the name "not above" or "below or equal"). i.e.

jna here   ; or jbe here 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -