MIPS错误:无法直接写入文本段!0x00500000

时间:2016-03-05 19:51:15

标签: bubble-sort mips64

我正在尝试进行mips互动练习(BubbleSort)。我必须从用户读取20个整数并将它们存储到数组中,然后使用BUBBLESORT方法对数组进行排序。 我有一个问题,将整数存储到数组中。 这是我的一些代码:

。数据

prompt:.asciiz "enter the integer one by one \n "

的.text

        addi $sp,$sp,-88               #space on the stack
    lui  $s0, 0x0040                   #s0=adress of array
    sw   $s0,-84($sp)                  #store s0 on the stack
    sw   $ra,-80($sp)                  #store ra on the stack

readInt:

    #prompt the user
    li $v0, 4                          #op code to print string
    la $a0, prompt
    syscall

    #get the array's integer
    addi $t0,$zero,0                    #t0=compteur
    addi $a1,$zero,80                   #a1=size of array*4 (20 int)
    move $a0,$s0                        #a0= adress of array 

循环:

beq  $t0,$a1,BubbleSort             #if t0 = size of array ==>BubbleSort
    li   $v0,5                          #opcode to read int
    syscall 
  **sw  $v0,0($a0)**                    ERROR HERE !!!! :(
    addi $a0,$a0,4                      #increment a0  (next int)   
    addi $t0,$t0,4                      #incrementer t0  (counter +=4)
    j loop

0 个答案:

没有答案