Quantcast
Channel: Vintage Computer Forum
Viewing all articles
Browse latest Browse all 21751

True/false

$
0
0
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;

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

So... how should I change SHIFT when I need to? Mike

Viewing all articles
Browse latest Browse all 21751

Trending Articles