I'm having issues grasping the concept of string and characters in MIPS. If I'm trying to loop through two strings, and concatenate two characters at a time, how would I do this?

Lets say I have

String1 = "St"
String2 = "ack"

How could I loop through to get

Sa, Sc, Sk, ta, tc, tk 

Thanks in advance!

link|improve this question

Can you write us the pseudocode you think would do it, and whatever MIPS code you have so far? – John Zwinck Apr 27 '11 at 1:24
feedback

2 Answers

the most easy way to do this:

1)write the program with C.

2)compile it with GCC with flags "-S", and use "> xx.S" to store the assembly code to a file.

3)extract the assembly codes from "xx.S".

link|improve this answer
This only works on a Mips machine, as I don't have a cross compiler. – Parker Jun 7 '11 at 17:31
It's easy to make a cross-compiler. I just made one yesterday... – Wu Xingbo Jun 7 '11 at 19:02
maybe you can try 'buildroot' a dummy tool. – Wu Xingbo Jun 7 '11 at 19:04
From what I've read, it's extremely difficult to make a GCC cross compiler from x86 to MIPS? – Parker Jun 8 '11 at 17:33
you can just make binutils & partial gcc (make all-gcc, make install all-gcc) that don't need the libc, and I have succeed to it. – Wu Xingbo Jun 9 '11 at 1:48
feedback
up vote 0 down vote accepted

Wasn't able to figure it out, the MIPS environment I used had something built in apparently.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.