How to link two nasm source files

▼魔方 西西 提交于 2019-12-01 05:48:06

Sure - you just need to use the linker. Assemble each of your files:

nasm -o prints.o prints.asm
nasm -o usingPrintTest.o usingPrintTest.asm

You can then pass the output objects to your linker. Something like:

gcc -o myProgramName prints.o usingPrintTest.o

Using gcc as the linker driver can solve some funny business with linking the OS libraries you need for your program to run. You might need to make some declarations in usingprintTest.asm to let it know that print_Achar and os_return are going to be defined elsewhere - in nasm, you'll use the extern assembler directive:

extern print_Achar
extern os_return
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!