Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在掌握 MIPS 中字符串和字符的概念时遇到问题。如果我试图遍历两个字符串,并一次连接两个字符,我该怎么做?
可以说我有
String1 = "St" String2 = "ack"
我怎么能循环得到
Sa, Sc, Sk, ta, tc, tk
提前致谢!
最简单的方法:
1)用C编写程序。
2)使用带有标志“-S”的GCC编译它,并使用“> xx.S”将汇编代码存储到文件中。
3)从“xx.S”中提取汇编代码。
无法弄清楚,我使用的 MIPS 环境显然内置了一些东西。