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 アセンブリで初期化せずに文字列変数を宣言するにはどうすればよいですか? そして、ユーザーから金額を受け取ります。
例えば:string judge;
string judge;
ディレクティブを使用して.spaceスペースを確保することにより、次のようになります。
.space
.data foo: .space 100 # Reserve 100 bytes of space .text la $a0, foo # Load the address of foo # Do whatever