I am trying to print a few string in MIPS, but when i try print the first message, program prints all of them.
.data
first_msg: .ascii "Podaj pierwsza liczbe: "
second_msg: .ascii "Podaj druga liczbe: "
third_msg: .ascii "Wieksza z tych liczb jest liczba "
.text
main:
la $a0, first_msg
li $v0, 4
syscall
li $v0, 10
syscall
Sorry for my bad language and thanks for your help!