1 .text 2 .align 4 3 .global bar 4bar: 5 mov %r0, 0 6 exit 7 8main: 9 mov %r0, 3 10 mov %r1, 1 11 call bar 12 exit 13