程序返回错误“尝试以0x00000000执行非指令”

时间:2019-10-25 17:22:05

标签: recursion riscv

我已获得有关RISC-V的硬件。 任务是解决循环方程T(n)= 2T(n / 2)+ n(如果n或输入> = 2,否则返回1)。我尝试创建解决方案代码,但一直给我(错误)尝试在0x00000000执行非指令。有人可以告诉我我的错误在哪里以及如何解决吗? 谢谢您的时间!

注意:我只能从“在此处写您的递归代码...”中开始编写代码。

.globl __start

.rodata
    msg_input: .string "Enter a number: "
    msg_result: .string "The result is: "
    newline: .string "\n"

.text

__start:
  # prints msg_input
    li a0, 4
    la a1, msg_input
    ecall
  # read from standard input
    li a0, 5
    ecall

################################################################################ 
# write your recursive code here, input is in a0, store the result(integer type) to t0
    jal findsum 
findsum:
    li t0, 2            #t0==2
    blt a0, t0, L1      #if n<2 return 1
    addi sp, sp, -8     #reserve stack area
    sw ra, 0(sp)        #save return address
    sw a0, 4(sp)        #save input 
    li t0, 2            #t0==2
    div a0, a0, t0      #n=n/2
    jal findsum         #call findsum(n/2)
                        #a1=FindSum(n/2)
    li t0, 2            #t0=2
    mul a1, t0, a1      #a1=2*FindSum(n/2)
    addi a1, a1, 2      #a1=2*FindSum(n/2)+2
    j done

L1:
    li a1, 1    

done:
    lw ra, 0(sp)
    addi sp, sp, 8
    jr ra

################################################################################

result:
  # prints msg_result
    li a0, 4
    la a1, msg_result
    ecall
  # prints the result in t0
    li a0, 1
    mv a1, t0
    ecall
  # ends the program with status code 0
    li a0, 10
    ecall  

0 个答案:

没有答案