Hello all
how can in HLL ( like .if ) a JLE be coded i tried .if (SIGN? != OVERFLOW?) || ZERO?
but on compiling i keep getting error "error A2154: syntax error in control-flow directive"
Any idea?
Greets,
.if SDWORD PTR eax<=dwSomeVar
or
.if SDWORD PTR eax=-5
it may also be SBYTE or SWORD
once an SDWORD PTR is used, all compares in that .if/.else/.endif construct are assumed to be signed
Thank you Dave this is what i want