BTMASK=####   (set current Bit Mask to new value)


  • Sets the mask used for bit-wise operations. The syntax for Bit Mask value #### can be:


    • 32000                ' decimal
    • 0xFFFF                ' hexadecimal  (C syntax)
    • &HFFFF                ' hexadecimal (Basic syntax)
    • 0b001010                ' Binary (C syntax)
    • &B001010                ' binary (Basic syntax)


RSAVE# commands also save the last reply value and can process any of the above numeric types.



Return to Repeat/Until Loop