我正在尝试创建一个简单的frogger游戏,但是当我在MIPS中运行我的代码时,它会抛出错误
Frogger line 39 column 2: "addi": Too many or incorrectly formatted operands. Expected: addi $t1,$t2,-100`
.data
World: .ascii "____f____"
XCoord: .byte 4
under: .ascii "_"
frog: .ascii "f"
// function that displays "world" string
emitworld:
addi $ra, $ra, -4($sp)
sw $ra, 0($sp)
jal emitseq
lw $ra, 0($sp)
addi $ra, $ra, 4($sp)
jr $ra