News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Macro Question

Started by FORTRANS, March 24, 2024, 07:43:51 AM

Previous topic - Next topic

NoCforMe

Quote from: FORTRANS on April 23, 2024, 08:37:28 AMWhy doesn't MASM generate code for the INVOKEs in its listing?

It does:
INVOKE LoadCursor, NULL, IDC_ARROW
 00000079  68 00007F00    *     push   +000007F00h
 0000007E  6A 00    *     push   +000000000h
 00000080  E8 00000000 E   *     call   LoadCursorA

You might not have the right options set on the ml command line. Mine are

ml /c /coff /Fl /Sg /Sn <.asm file>
Assembly language programming should be fun. That's why I do it.

FORTRANS

Hi,

   Thank you.  I thought I had tried all of the switches,
but obviously not.

Regards,

Steve N.