I study the assembler. It is necessary to compile the program in .exe format.
However, before that, I only compiled in .com .
What arguments for this should be used?
|
1 answer
ml.exe /c /coff "code.asm" ;ΠΠΎΠΌΠΏΠΈΠ»ΡΡΠΈΡ link.exe /subsystem:windows /out:"compiled.exe" "code.obj" ;ΠΠΎΠΌΠΏΠΎΠ½ΠΎΠ²ΠΊΠ°
- Compilation. Get the object file .
- Layout We get the executable file in
exe
format .
|