In z/OS HLASM, I'm wondering if there is a way to "unequate" a symbol that was defined via the EQU instruction. For example:
MyValue EQU 999
...
LHI R5,MyValue
...
MyValue UNEQU <===== or something that returns MyValue to the undefined state for the next statement in the assembly
I suppose this would be simiar in concept to a DROP following a USING to "scope" the relationship between a register and a DSECT, but in this case it would mean "this symbol is only valid within the scope between the EQU and the 'unEQU'."
Thanks, Scott