Blame | Last modification | View Log | Download
# file opened: define_vs_value_substitution.asm1 0000 ; testing if the two-level deep substitution happens per-line and not at DEFINE itself2 0000 DEFINE xyz 1233 0000 DEFINE abc xyz3 0000 ASSERT 123 == 1234 0000 UNDEFINE xyz5 0000 DEFINE xyz 4565 0000 ASSERT 456 == 4566 00007 0000 ; remove the defines8 0000 UNDEFINE abc8 0000 UNDEFINE xyz9 000010 0000 ; second variant defining "abc" ahead of "xyz"11 0000 DEFINE abc xyz12 0000 DEFINE xyz 23412 0000 ASSERT 234 == 23413 0000 UNDEFINE xyz14 0000 DEFINE xyz 56714 0000 ASSERT 567 == 56715 0000# file closed: define_vs_value_substitution.asmValue Label------ - -----------------------------------------------------------