News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

understanding listings generated by /Fl

Started by rags, February 01, 2009, 06:54:01 PM

Previous topic - Next topic

rags

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
God made Man, but the monkey applied the glue -DEVO

Jimg

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

rags

God made Man, but the monkey applied the glue -DEVO