DATA    SEGMENT

ALIAS   EQU   THIS BYTE      ; reference this address as a byte
Stuff   DB    ?

        MOV   AL, ALIAS      ; This construct is
        MOV   AL, Stuff      ; equivalent to this

DATA    ENDS


[Back] [Next]