1 .macro one_sym count 2 .globl sym_2_\count 3sym_2_\count: 4 la $2, sym_2_\count 5 .endm 6 7 .text 8 .ent func2 9func2: 10 .frame $sp,0,$31 11 .set noreorder 12 .cpload $25 13 .set reorder 14 .cprestore 8 15 .set noreorder 16 17 .irp thou,0,1,2,3,4,5,6,7,8 18 .irp hund,0,1,2,3,4,5,6,7,8,9 19 .irp tens,0,1,2,3,4,5,6,7,8,9 20 .irp ones,0,1,2,3,4,5,6,7,8,9 21 one_sym \thou\hund\tens\ones 22 .endr 23 .endr 24 .endr 25 .endr 26 27 .end func2 28