摘要:
When your compiler compiles your C code, it generates an object file, which is consequently linked into a program. These "object" files and "executabl... 阅读全文
摘要:
Linux下可执行文件格式为ELF 如果想使用nasm生成ELF格式的文件,一步是办不到的,需要使用连接器,具体如下 nasm –f elf hello.asm gcc –o hello hello.o 生成的hello文件就是我们的程序 我们可以用Linux下的16进制编辑器来查看他的内容 Lin... 阅读全文