Reputation: 4676
Once we assign a label using RESX or DX commands,(where X can be B, W, D, Q, T) is it possible to later assign a memory location to that label?
For eg, can I do something like,
mov label, X560h
Upvotes: 0
Views: 773
Reputation: 27
Labels aren't in the final code (at least if you have a binary output). It wouldn't make any sense to change constants for the assembler while executing the code.
There are two ways to do it:
(I think that option 2 doesn't help you)
Upvotes: 0