要小心 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'})