The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: rags on February 01, 2009, 06:54:01 PM

Title: understanding listings generated by /Fl
Post by: rags on February 01, 2009, 06:54:01 PM
Is there a reference available that shows what's what on a listing created when you use the /Fl option with ML?

For example, I know from seeing in a previous post that the c preceding the xor statement, means that it came from another include file.

0000014F  33 C9       C       xor ecx, ecx


but in this code:

000001DF  A3 00000078 R     1       mov hInstance, $invoke(GetModuleHandle, NULL)

What does the R or 1 mean?
Where can someone find out?

TIA, Rags
Title: Re: understanding listings generated by /Fl
Post by: Jimg on February 01, 2009, 07:23:25 PM
See appendix C of the Masm Programmers Guide

in this case, from table c.2, R means "Relocatable address (linker must resolve)".

http://www.masm32.com/board/index.php?topic=5433.0
Title: Re: understanding listings generated by /Fl
Post by: rags on February 02, 2009, 01:59:04 AM
Thanks for the nfo Jim