VisualMASM icon indicating copy to clipboard operation
VisualMASM copied to clipboard

Debugging DOS code

Open ronny332 opened this issue 6 years ago • 1 comments

Hi, it looks like a similar issue for DOS debugging (please refer to #2) still exists in the current version. I just tried to move an existing small assembly program over to visual masm and the output indicates that again the quotes are at the wrong place:

"c:\masm32\bin\ml.exe /Zi /Zd /Zf" /Fo"C:\Users\noname\Documents\Visual MASM\Test-01\Debug\Assembly1.obj" /c /AT /nologo "C:\Users\noname\Documents\Visual MASM\Test-01\Assembly1.asm

Without any quotes around the ml.exe and an extra space ight after the /Fo switch it is running smoothly:

c:\masm32\bin\ml.exe /Zi /Zd /Zf /Fo "C:\Users\noname\Documents\Visual MASM\Test-01\Debug\Assembly1.obj" /c /AT /nologo "C:\Users\noname\Documents\Visual MASM\Test-01\Assembly1.asm

The way these query strings get built is not configurable from the users side, right?

ronny332 avatar Dec 30 '17 11:12 ronny332

This is fixed now. Thank you for reporting this. So, the command line switches are built by Visual MASM and are not configurable. The only portions that you can do from a users point of view is to create all your command line switches in the projects options. There you have full control.

Let me know if this works for you now.

ThomasJaeger avatar Dec 30 '17 20:12 ThomasJaeger