-
[Assembly][MASM] cl 과 ml 을 이용해 .c파일과 .asm파일 디버그 컴파일Programming/Assembly 2008. 11. 21. 10:35
cl /c /Z7 Main.cdebug옵션으로 .c -> .obj파일 생성
ml /c /coff /Zi Head.asmdebug옵션으로 .asm -> .obj파일 생성
link /debug /out:TEST.exe Main.obj Head.obj/debug옵션으로 .exe파일 생성
windbg 사용