Code: Select all
Float.f=Integer&$FFFF
But we can do this:Can't use any of the following operands with floats: <<, >>, &, |, !, %.
Code: Select all
Integer=Integer&$FFFF
Float.f=Integer

Code: Select all
Float.f=Integer&$FFFF
But we can do this:Can't use any of the following operands with floats: <<, >>, &, |, !, %.
Code: Select all
Integer=Integer&$FFFF
Float.f=Integer
Code: Select all
LongA.l=2147483647
LongB.l=2147483647
Quad.q=LongA*LongB
Debug Quad.q
Code: Select all
Long.l=Float.f&$FFFF
Code: Select all
Long.l=Int(Float.f) & $FFFF
Code: Select all
Float.f=Integer&$FFFF