Hi!

21-Дек-2006 19:03 [EMAIL PROTECTED] (Daniel Verkamp) wrote to
freedos-devel@lists.sourceforge.net:

DV> ja/jae and jb/jbe are "jump if above/below", which work the same way as
DV> jg/jge and jl/jle, except treating the operands as unsigned instead of
DV> signed.

     There are also other differences. For example, because INC/DEC don't
change carry flag, they can't be used for unsigned-condition-jumps. Ie, they
should be replaced by add/sub:

sub ax,1        ; DEC can't be used here
jb @@overflow

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freedos-devel mailing list
Freedos-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-devel

Reply via email to