简单的MIPS汇编 - 返回斐波纳契数

时间:2017-03-24 23:04:01

标签: assembly mips mars

我试图创建一个简单的汇编代码,它接受一个输入N并返回第N个斐波纳契数(例如,如果你输入2,它应该输出1,如果你输入3,它应该输出2)。我的代码没有抛出任何错误,但是在输入数字后它会返回一些奇怪的东西。

如果输入1,则返回2685009921。 如果输入2,则返回0.01。 如果输入3,则返回0.02。 如果输入4,它会在开头输出要求正整数的文本,然后输入3(正确的答案)。 如果输入5,则不输出任何内容,当再次按Enter键时,它会给出运行时异常(无效的整数输入系统调用5)。 任何高于五的都会产生奇怪的错误。

它几乎就像运行一个输入数字作为代码的系统调用一样,这可以解释为什么前四个数字输出的东西(前四个系统调用输出数据)。

你怎么看?这是代码:

.data
  introText: .asciiz "Type a positive integer, please! \n"
  input: .word 123


.text
  # ask user for input
  li $v0, 4
  la $a0, introText
  syscall

  # read input int
  li $v0, 5
  syscall

  # store input
  addi $s1, $v0, 0
  syscall

  # main loop
  li $s2, 0 # s2 starts at 0 and will increase until it's equal to $s1, the player input
  li $s3, 0 # this will hold the most recent fib number
  li $s4, 1 # this will hold the second most recent fib number
  loop: 
    addi $s2, $s2, 1 # increment s2 for loop
    add $s5, $s3, $s4 # make the current result the sum of the last two fib numbers
    addi, $s4, $s3, 0 # make the second most recent fib number equal to the most recent fib number
    addi, $s3, $s5, 0 # make the most recent fib number equal to the current fib number
  bne $s2, $s1, loop

  # return the answer
  li $v0, 1
  addi $a0, $s5, 0
  syscall

  # end program
  li $v0, 10 
  syscall

1 个答案:

答案 0 :(得分:0)

出于某种原因,您在syscall之后放置了addi $s1, $v0, 0。那条指令不应该存在。