I'm using SASM to compile a 64-bit NASM exe on Windows 7. I'm using NASM as the compiler and GoLink as the linker. My compiler string is:
-Z myfile.err -f Win64 Std_Math_Formulas.asm -l myfile.lst -F cv8 -g -o Win_API_Program.obj
SASM gives me the error message "nasm: fatal: unrecognized debug format `cv8' for output format `win64'. So I open a command prompt and type nasm -f win64 -y and it tells me: "valid debug formats for 'win64' output format are cv8 Codeview 8."
So if NASM tells me cv8 is a valid debug format, why does sasm give me this error? When I compile it outside of SASM, I don't get that error; instead, I get code errors, but I want to debug them in a source code debugger-IDE, so that's why I want to use SASM.
Thanks in advance for any help.