The information in this article applies to:
SUMMARYSometimes it is helpful to conditionally have a starting label specified with the END directive; for example, to use preprocessor directives to specify various END directives:
Note, however, that this approach will not work. As soon as MASM
encounters the first END directive it will stop assembling. The
assembler stops regardless of whether or not the END directive is
inside a preprocessor block. This is the expected behavior for the
assembler.
A method that can be used to accomplish this task involves using a conditionally defined text equate with the END directive. The following sample code demonstrates this method: Sample Code
Additional query words: kbinf 6.00 6.00a 6.00b
Keywords : |
Last Reviewed: January 4, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |