;;----------------------------- ;;-- testLink-2.asm ;;-- Local symbols "foo" and "bar" can be referenced from other source file. ;;-- The linker keeps track of references and "link edits" them when ;;-- combining; ie., "linking"; two .obj files. If the .obj header has a symbol ;;-- table, the linker can use that to fix up references in other files. ;;----------------------------- .ORIG x0000 ;;-- Doesn't matter, could be placed anywhere in memory. foo: ;;-- A routine that is assembled seperately, then linked. ret bar: ;;-- Another routine that is assembled seperately, then linked. ret .END