GCC’s assembly output of an empty program on x86, win32
.file “test.c” Commands starting with . are directives to the assembler. This just says this is “file.c”, that information can be exported to the debugging information of the exe. .def ___main; .scl 2; .type 32; .endef .def directives defines a debugging symbol. scl 2 means storage class 2(external storage class) .type 32 says this sumbol … Read more