1 .global _start 2 .global WORD 3 .global HALF 4 .global BYTE 5 .global ULEB128 6.text 7_start: 8 nop 9.L0: 10 l.w $r0, WORD 11 .zero 122 12.L1: 13 nop 14 15.section code, "ax" 16FOO: 17 ret 18 19.data 20WORD: 21 .word .L1-.L0 22HALF: 23 .half .L1-.L0 24BYTE: 25 .byte .L1-.L0 26ULEB128: 27 .uleb128 .L1-.L0 28ULEB128_2: 29 .uleb128 .L1-.L0 30 .align 2 31PAD: 32 .long 0 33