Hello,
How can I if CarryFlag set and check
if CF == 1 ; compiler can not compile error
.ENDIF
Thanks..
How can I if CarryFlag set and check
if CF == 1 ; compiler can not compile error
.ENDIF
Thanks..
.if [COLOR=darkred]CARRY?[/COLOR]
[COLOR=green]; Do something magical...[/COLOR]
.endif
Or simply:
jnc nocarry
;do what you need to do and
;jump elsewhere if required
nocarry:
Raymond
jnc nocarry
;do what you need to do and
;jump elsewhere if required
nocarry:
Raymond
Thanks...
Can I ask all flags with if too???
Can I ask all flags with if too???
IIRC:
CARRY?
SIGN?
OVERFLOW?
PARITY?
ZERO?
CARRY?
SIGN?
OVERFLOW?
PARITY?
ZERO?
one more:
IOPL?
IOPL?
ROFL?
ROFL?
Nah,
RTFM?
(as all flags are explained in the help files coming with masm32 ;) )
Hello,
Thanks...
IF and
CF
Thanks...
IF and
CF