here is my code:
.text
.globl main
main:
li $t0,0 #creats address
la,$t1,str #creats addresses
lb $t2,char #reads "c"
lb $t3,($t1) #reads firs character from the string
if: beqz $t3,exit #if $t3=0 go to exit
bne $t3,$t2,next #if $t3!=$t2 go to next
addi $t0,$t0,1 # adds 1 to $t0
next: addi $t3,$t3,1 #puts next character in $t3
j if
exit:
li $v0,4
la $a0,mess
syscall
li $v0,1
move $a0,$t0
syscall
li $v0,4
la $a0,CRLF
syscall
li $v0,10
syscall
.data
str: .ascizz "aaabbccccddabceeffeeghi"
char: .ascii "c"
mess: .ascizz "Count is"
CRLF: .ascizz "\n"
i get this error:
spim: (parser) syntax error on line 25 of file /Users/Geil/Desktop/poutsa.s
str: .ascizz "aaabbccccddabceeffeeghi"
It looks like you want it to be
.asciiz
, not.ascizz
..asciiz
declares a string as null terminated..ascizz
is a syntax error.