MIPS 常见指令汇编举例
时间: 2023-10-11 10:09:34 浏览: 132
MIPS常用指令
5星 · 资源好评率100%
好的,以下是一些MIPS常见指令及其对应的汇编代码举例:
1. 加法指令
汇编代码:
```assembly
add $t0, $s1, $s2
```
2. 减法指令
汇编代码:
```assembly
sub $t0, $s1, $s2
```
3. 加载指令
汇编代码:
```assembly
lw $t0, 0($s1)
```
4. 存储指令
汇编代码:
```assembly
sw $t0, 0($s1)
```
5. 分支指令
汇编代码:
```assembly
beq $s1, $s2, label
```
6. 跳转指令
汇编代码:
```assembly
j label
```
7. 移位指令
汇编代码:
```assembly
sll $t0, $s1, 2
```
8. 逻辑运算指令
汇编代码:
```assembly
and $t0, $s1, $s2
```
以上是一些MIPS常见指令及其对应的汇编代码举例,希望能对您有所帮助。
阅读全文