Re: [fasm-help] bug report (fasm 1.43)
Brought to you by:
privalov
From: Fernando <fsa...@ig...> - 2003-01-16 15:23:52
|
I think is not a bug: jb or jc both jump if carry is set. they are the same! and the hex code for them is 72h 72 cb JB rel8 Jump short if below (CF=1) 72 cb JC rel8 Jump short if carry (CF=1) mnemonic meaning condition JB Jump if Below CF=1 JC Jump if Carry CF=1 look opcodes.hlp that come with masm to more information, or look for intel opcodes. regards! ----- Original Message ----- From: "urgo urgo" <ur...@ya...> To: <fas...@li...> Sent: Thursday, January 16, 2003 2:57 AM Subject: [fasm-help] bug report (fasm 1.43) > hi > > i think i have found a bug: > > "jc" (jmp if carry flag set) > > is assembled by fasm 1.43 as being: > > jb (jmp if below) > > best regards > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > http://mailplus.yahoo.com > > > ------------------------------------------------------- > This SF.NET email is sponsored by: A Thawte Code Signing Certificate > is essential in establishing user confidence by providing assurance of > authenticity and code integrity. Download our Free Code Signing guide: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0028en > _______________________________________________ > Fasm-help mailing list > Fas...@li... > https://lists.sourceforge.net/lists/listinfo/fasm-help > |