I'm building a program(in 16-Bits) using Assembly(nasm as the assembler), but as I love to have things organized in different source files. Let's think I have 2 sources, one called main.asm
and another one called source2.asm
, but I want to call the source1.asm
content in the middle of main.asm
. How could I do this?
views:
33answers:
2But if I want just to call a label that is defined at `source2.asm`?
Nathan Campos
2010-06-19 14:45:48