Can a 2 Pass Assembler resolve Nested Forward References

464 views Asked by At

I understand that if a symbol is forward referenced, the two pass assembler can solve it. But If there is a nested definition of a symbol e.g.

D EQU A+C

C EQU B+A

B EQU A

A WORD 10

Can this be resolved by a 2 pass Assembler?

0

There are 0 answers