First page Back Continue Last page Overview Graphics
VAR Command
VAR Command
Name VAR Size where size can be BIT, NIB, BYTE, or WORD
where
BIT uses 1 binary digit (bit) to store the value (so the max value is 1)
NIB uses 4 bits to store the value (so the max value is 11112 = 1510)
BYTE uses 8 bits to store the value (so the max value is 111111112 = 25510)
WORD uses 16 bits to store the value (so the max value is 11111111111111112 = 6553510)