-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem debugging dos code #2
Comments
Thanks a lot for pointing this out. I will fix this as soon as I can. Thanks again for your feedback. I appreciate it. |
I fixed it. Please try the latest version. Let me know if you still have any issues, please. |
Now, it works :) |
Great, glad it's working now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
My instance of visual MASM produces following output (for dos 16bit exe)when I try to debug code:
Assembling G:\masm32\projs\
Microsoft (R) Macro Assembler Version 6.14.8444
Copyright (C) Microsoft Corp 1981-1997. All rights reserved.
"G:\masm32\bin\ml.exe /Zi /Zd /Zf" /c /Fo"G:\masm32\projs\Debug\Assembly1.obj" G:\masm32\projs\ASSEMB~1.ASM
MASM : warning A4018: invalid command-line option : /Z /c /FoG:\masm32\projs\Debug\
MASM : warning A4018: invalid command-line option : /Z/c /FoG:\masm32\projs\Debug\
MASM : warning A4018: invalid command-line option : /Zc /FoG:\masm32\projs\Debug\
and so on.
Problem seems to lie on " character after /Zf
From my investigation this is due to line from uDM.pas[2340]:
ptDos16EXE: cmdLine := ' "'+FVisualMASMOptions.ML32.FoundFileName+debugOption+'" /c /Fo'+pf.OutputFile+ ' '+ExtractShortPathName(pf.FileName);
Maybe
debugOption
should be excluded from double quotes ?The text was updated successfully, but these errors were encountered: