In MIPS assembly how would I parse an integer such as 255 into a string of characters '2' '5' '5'
.
255 could be in $t0
'2' '5' '5'
could then be stored in $t1
and then printed.
How would I do this?
The idea of converting a number into a string in some base is basically done by repeatedly dividing it by the base (10 in this case) and write the remainder backwards until the value is zero. That's the easiest solution. For example for 255
255/10 = 25 remain 5 ↑
25/10 = 2 remain 5 ↑
2/10 = 0 remain 2 ↑
The remainder is 2, 5, 5 as expected
For decimal you have another option, that is double dabble, which can convert binary into packed BCD without division. Then you can unpack the nibbles into chars easily
Asterisk did a very good job! I'm just writing to make his answer more complete.
The message
-- program is finished running (dropped off bottom) --
is shown because he didn't end his program with
li $v0, 10
syscall
You should always finish your program with the above lines to terminate the execution normally.
From http://logos.cs.uic.edu/366/notes/mips%20quick%20tutorial.htm:
e.g. To indicate end of program, use exit system call; thus last lines of program should be:
li $v0, 10 # system call code for exit = 10
syscall # call operating sys
Here is the version in Python. Just translate it into mips assembly.
The idea is to repeadly get remainders of division by base(in this case 10). For example:
Now, just get remainders of division and print them in reverse order.
Here is one solution in mips assembly:
This results in the following output: