FIX: Byte Order Incorrect in Listing File For Doublewords (26801)



The information in this article applies to:

  • Microsoft Macro Assembler (MASM) 5.0

This article was previously published under Q26801

SYMPTOMS

The byte order shown in the listing file produced by MASM 5.0 for doublewords is incorrect.

STATUS

Microsoft has confirmed this to be a problem in MASM version 5.0. The problem was correctly in MASM version 5.1.

MORE INFORMATION

The listing file produced by MASM 5.0 for the following sample code shows var as 0A0F0000, while MASM 5.1 shows var correctly as 00000FA0.

Sample Code

;Assemble options needed: none

.model small
.data

var  dd  4000

end
				

Modification Type:MajorLast Reviewed:10/29/2003
Keywords:kbfix KB26801