FIX: ORG Behavior Different with Span-Dependent ValueLast reviewed: September 16, 1997Article ID: Q94751 |
6.00 6.00A 6.00B | 6.00 6.00A 6.00B
MS-DOS | OS/2kbtool kbfixlist kbbuglist The information in this article applies to:
SYMPTOMSIn Microsoft Macro Assembler (MASM) versions 6.0, 6.0a, and 6.0b, if the offset for an ORG directive depends on the difference between two labels (a span-dependent value), the assembled code differs from that produces by previous versions of MASM.
CAUSEThe offset for the ORG directive depends on label values that are not yet determined in the first assembly pass.
RESOLUTIONModify the code to remove span-dependent values in an ORG directive in code assembled with MASM versions 6.0, 6.0a, or 6.0b.
STATUSMicrosoft has confirmed this to be a problem in MASM version 6.0, 6.0a, and 6.0b for MS-DOS and OS/2. This problem was corrected in MASM version 6.1 for MS-DOS.
MORE INFORMATIONThis problem usually occurs when a forward reference occurs between the two labels. The assembler adds padding bytes for the forward reference and eliminates these bytes during a subsequent assembly pass. When this occurs, the second label has a larger value during the first assembly pass than it does in subsequent passes. The sample code below demonstrates this behavior.
Sample Code; Assemble options needed: none tst1 SEGMENT para public ASSUME cs:tst1 start: jmp SHORT forwardforward: mov ax, 4C00h int 21htst1 ENDS count = offset forward - offset start tst2 SEGMENT para public DB 1 ORG count ; This assembles as ORG 10 in MASM versions 6.0, 6.0a, and ; 6.0b. It assembles as ORG 2 in MASM versions 5.1 and 6.1.xxx DB 1 tst2 ENDS END start
|
Additional reference words: 6.00 6.00a 6.00b buglist6.00 buglist6.00a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |