Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Instruction references undefined error in MIPS/QTSPIM

I am triying to count all characters in an array and i had the following error:

Instruction references undefined symbol at 0x00400014 [0x00400014] 0x0c000000 jal 0x00000000 [main] ; 188: jal main

.data

 string:    .asciiz "nice work..."



  .text
 .globl main

  lw $a0,string
  jal strlength
  li $v0, 10
  syscall

   # METHOD STRLENGTH
   # Receives as first parameter the direction of the first character of string.
   # Returns the length of the string.

   strlength: li $t0, 0  #numero de caracteres
   lb $t4,string($t0)       #recorremos la cadena
   beqz $t4, fin            #si el caracter es igual a cero vamos a fin    
   addi $t0,$t0, 1      
   j strlength

   move $a0,$t0               #imprimimos numero de caracteres 
   li $v0, 1
   syscall 
   jr $ra 
like image 617
piyuyo Avatar asked Nov 08 '14 00:11

piyuyo


2 Answers

.globl main doesn't define the symbol, it just marks it as global if it will ever be defined. You need to add a main: label to the appropriate place, which in your case would probably be the first instruction.

like image 65
Jester Avatar answered Oct 06 '22 00:10

Jester


You should change the simulator Settings. Simulator-->Settings-->MIPS-->Exception Handler: Uncheck this option "Load Exception Handler" this way you disabling the native MIPS code and your own code works.

like image 44
JosiasF Avatar answered Oct 06 '22 01:10

JosiasF