9. NS BASIC Tech Note September 13, 1995 How to do Bit Manipulation -------------------------------------------------------------------------- There are four functions not listed in the NS BASIC manual that can help you do bit manipulation. They are: BAND(a,b) BOR(a,b) BXOR(a,b) BNOT(a) These functions return the integer result of their operation. A and B must be integers. Example * PRINT BAND(3,5) * 1