MIPS& SPIM:指令在0x00400024处引用未定义的符号

时间:2016-12-27 13:38:24

标签: mips

我使用命令 spim -file file.s 但我收到错误:指令引用未定义的符号0x00400024 ,我不明白为什么会发生这种情况

有我的代码:

  .text
  .globl    main
main:
  lw $t0,temp2
  lw $t1, temp3
  add $t1,$t0,$t1
  sw $t0,temp4

  lw $t0,b
  lw $t1,temp5
  sub $t1,$t0,$t1
  sw $t0,temp6

  li $v0,10
  syscall

  .data
a: .word 42
lo: .float 5.500000
b: .word 0
c: .float 0.000000
d: .word 0
temp0: .word 30
temp1: .word 10
temp2: .word 30
temp3: .word 10
temp4: .word 0
temp5: .word 2
temp6: .word 0

0 个答案:

没有答案