Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用汇编(nasm 作为汇编器)构建一个程序(16 位),但是因为我喜欢将事物组织在不同的源文件中。假设我有 2 个来源,一个调用main.asm,另一个调用source2.asm,但我想source1.asm调用main.asm. 我怎么能这样做?
main.asm
source2.asm
source1.asm
使用%include指令。请参阅 nasm 手册第 4.5 节
%include
使用GLOBAL和EXTERN。
GLOBAL
EXTERN