1 .data 2 foodata: .word 42 3 .text 4 footext: 5 .text 6 .global add 7 add: 8 add R0,R0,R0 9 .text 10 .global addu 11 addu: 12 addu R0,R0,R0 13 .text 14 .global addi 15 addi: 16 addi R0,R0,#0 17 .text 18 .global addui 19 addui: 20 addui R0,R0,#0 21 .text 22 .global sub 23 sub: 24 sub R0,R0,R0 25 .text 26 .global subu 27 subu: 28 subu R0,R0,R0 29 .text 30 .global subi 31 subi: 32 subi R0,R0,#0 33 .text 34 .global subui 35 subui: 36 subui R0,R0,#0 37 .text 38 .global and 39 and: 40 and R0,R0,R0 41 .text 42 .global andi 43 andi: 44 andi R0,R0,#0 45 .text 46 .global or 47 or: 48 or R0,R0,R1 49 .text 50 .global ori 51 ori: 52 ori R0,R0,#0 53 .text 54 .global xor 55 xor: 56 xor R0,R0,R0 57 .text 58 .global xori 59 xori: 60 xori R0,R0,#0 61 .text 62 .global nand 63 nand: 64 nand R0,R0,R0 65 .text 66 .global nandi 67 nandi: 68 nandi R0,R0,#0 69 .text 70 .global nor 71 nor: 72 nor R0,R0,R0 73 .text 74 .global nori 75 nori: 76 nori R0,R0,#0 77 .text 78 .global xnor 79 xnor: 80 xnor R0,R0,R0 81 .text 82 .global xnori 83 xnori: 84 xnori R0,R0,#0 85 .text 86 .global ldui 87 ldui: 88 ldui R0,#0 89 .text 90 .global lsl 91 lsl: 92 lsl R0,R0,R0 93 .text 94 .global lsli 95 lsli: 96 lsli R0,R0,#0 97 .text 98 .global lsr 99 lsr: 100 lsr R0,R0,R0 101 .text 102 .global lsri 103 lsri: 104 lsri R0,R0,#0 105 .text 106 .global asr 107 asr: 108 asr R0,R0,R0 109 .text 110 .global asri 111 asri: 112 asri R0,R0,#0 113 .text 114 .global brlt 115 brlt: 116 brlt R0,R0,0 117 .text 118 .global brle 119 brle: 120 brle R0,R0,0 121 .text 122 .global breq 123 breq: 124 breq R0,R0,0 125 .text 126 .global jmp 127 jmp: 128 jmp 0 129 .text 130 .global jal 131 jal: 132 jal R0,R0 133 .text 134 .global ei 135 ei: 136 ei 137 .text 138 .global di 139 di: 140 di 141 .text 142 .global reti 143 reti: 144 reti R0 145 .text 146 .global ldw 147 ldw: 148 ldw R0,R0,#0 149 .text 150 .global stw 151 stw: 152 stw R0,R0,#0 153 .text 154 .global si 155 si: 156 si R0 157 .global brne 158 brne: 159 brne R0,R0,0 160 .global break 161 break: 162 break 163 .text 164 .global nop 165 nop: 166 nop 167