I want to make a variable either TRUE or FALSE and to be able to change that variable during the program. I started out with;
So... how should I change SHIFT when I need to? Mike
Code:
TRUE: EQU 0FFH
FALSE: EQU NOT TRUE
SHIFT: EQU FALSE
PROG: (Do Stuff)
Then how to I change SHIFT to TRUE?
I tried;
SHIFT: SET TRUE ;This did not work