1! Relative linking, second file. 2 3! fileFsectionN, with F in rel-F.s, and N in: 4! 1 - Same file and section. 5! 2 - Same file, different section. 6! 3 - Other file, same section. 7! 4 - Other file, other section. 8 9 .mode SHmedia 10 .text 11 .global start2 12start2: 13 nop 14 .global file2text1 15file2text1: 16 nop 17 movi file2text1 & 65535,r10 18 .global file2text2 19file2text2: 20 movi file2data2 & 65535,r20 21 .global file2text3 22file2text3: 23 movi file1text3 & 65535,r20 24 .global file2text4 25file2text4: 26 movi file1data4 & 65535,r20 27 movi unresolved1 & 65535,r30 28 movi unresolved3 & 65535,r30 29 30 .data 31 .long 0 32 .global file2data1 33file2data1: 34 .long 0 35 .long file2data1 36 .global file2data2 37file2data2: 38 .long file2text2 39 .global file2data3 40file2data3: 41 .long file1data3 42 .global file2data4 43file2data4: 44 .long file1text4 45 .long unresolved2 46 .long unresolved4 47