标签: assembly mips32 qtspim
如何在MIPS程序集中声明字符串变量而不进行初始化?然后它会从用户那里收到一笔金额。
例如:string judge;
string judge;
答案 0 :(得分:0)
使用.space指令保留一些空格:
.space
.data foo: .space 100 # Reserve 100 bytes of space .text la $a0, foo # Load the address of foo # Do whatever