News:

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

Main Menu

Little problem with debug

Started by HSE, July 30, 2019, 09:05:16 AM

Previous topic - Next topic

HSE

There is a little problem with debug options:

I changed assembler option to AsmC28, but debug and symbols options still expects UAsm64.

Thanks in advance.
Equations in Assembly: SmplMath

jj2007

So you used the short version: OPT_Symbols 1
That one expects indeed UAsm64 and sets the commandline for assembler and linker. Delete it and use the long version instead:
OPT_Assembler AsmC28
OPT_DebugA /Zi /Zf
OPT_DebugL /debug


Let me know if it works, please.

HSE

Equations in Assembly: SmplMath

jj2007