GAS LISTING kl.s page 1 1 .text 2 _start: .globl _start 3 4 0000 A1240000 test: movl x, %eax 4 00 5 0005 A11E0000 movl func, %eax 5 00 6 000a B8240000 movl $x, %eax 6 00 7 000f B81E0000 movl $func, %eax 7 00 8 0014 A1060000 movl x-func, %eax 8 00 9 0019 B8060000 movl $x-func, %eax 9 00 10 11 001e 90 func: nop 12 001f E8000000 call x 12 00 13 14 0024 58 x: popl %eax 15 0025 2D060000 subl $x - func, %eax 15 00 16 17 002a BB000000 stop: movl $0, %ebx 17 00 18 002f B8010000 movl $1, %eax 18 00 19 0034 CD80 int $0x80 20 21 22 0036 89F6 .data 23 GAS LISTING kl.s page 2 DEFINED SYMBOLS kl.s:2 .text:00000000 _start kl.s:4 .text:00000000 test kl.s:14 .text:00000024 x kl.s:11 .text:0000001e func kl.s:17 .text:0000002a stop NO UNDEFINED SYMBOLS