我的输入
.text
.globl start
start:
# load with sign extension
lw $t0, memory
lh $t1, memory
lb $t2, memory
# load without sign extension
lhu $t3, memory
lbu $t4, memory
.data
memory:
.word 0xABCDE080 # little endian: 80E0CDAB
我的错误
尝试在 0x00400028 处执行非指令
这是什么意思?