FIX: Incorrect ChecksumLast reviewed: September 10, 1997Article ID: Q26803 |
5.00
MS-DOS
kbtool kbfixlist kbbuglist
The information in this article applies to:
SYMPTOMSMicrosoft Macro Assembler (MASM) version 5.0 may generate an incorrect checksum for one of the records in the generated object module.
RESOLUTIONIf the starting address is removed from the END directive, the problem goes away.
STATUSMicrosoft has confirmed this to be a problem in MASM version 5.0. This problem was corrected in MASM version 5.1.
MORE INFORMATIONThe following sample code can be used to demonstrate the problem.
Sample Code; Assemble options needed: none _TEXT SEGMENT PARA PUBLIC 'CODE' ASSUME CS:_TEXTstart: mov ax, 4C00h int 21h_TEXT ENDS END start ; removing the label 'start' from the END directive ; stops the incorrect checksum from being generated |
Additional reference words: 5.00 buglist5.00 fixlist5.10
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |