I want to read space separated integers in mips assembler. I currently do:
li $v0, 5
syscall
move $t4, $v0
In a loop but it requires to make input with endline. I want to just put many space separated integers and make it read them. How can I do it?