要小心 SPIM .asciiz 對 escape sequence 的處理...
.asciiz "abcd\efghi"
得到的字串會是 "abcd\\efghi" (in C notation)
而
.asciiz "abcd\nfg"
得到的字串是 "abc\nfg", i.e. {'a', 'b', 'c', '\n', 'f', 'g', 0}
所以假如測試時的檔名如
.asciiz "C:\mycode\test.txt"
"\t" 就會被當作 tab 字元. 可是並沒有像 C 的 "\\" 那樣的寫法...
(i.e. "\\t" 會被當成 {'\', '\t'})