Hello.
I'm trying to use nasm to output an obj file with local symbols (for debugging purposes), but I cannot find an option to do that.
Here is my command line:
nasm -f obj hello.asm -o hello.obj
Other assemblers, like RASM-86, can generate such obj files, which can be used to generate symbols files that can be used for debugging. But I would like to use nasm because it has some nice features.
Can anyone help me?
Thanks!