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
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
Thanks for the nfo Jim