在 z/OS HLASM 中,我想知道是否有办法使通过 EQU 指令定义的符号“不相等”。例如:
MyValue EQU 999
...
LHI R5,MyValue
...
MyValue UNEQU <===== or something that returns MyValue to the undefined state for the next statement in the assembly
我想这在概念上类似于使用 USING 来“范围”寄存器和 DSECT 之间的关系的 DROP,但在这种情况下,这意味着“这个符号仅在 EQU 和 'unEQU 之间的范围内有效’。”
谢谢,斯科特