我正在使用 MARS 程序编写一些 MIPS 汇编代码,而我正在编写的程序需要接收一个输入文件,然后对其进行迭代以更改一些数字。我已经编写了所有代码主体,但我不确定如何实际接收文件。我有以下代码读取输入并存储地址:
.data 0x0
magicNum: .asciiz "P2" #magic number
zero: .word 0
newLine: .asciiz "\n" #new line character
.text 0x3000
main:
ori $v0, $0, 8 #8 is syscall to read string
ori $a0, $0, 100 #stores address of input buffer
ori $a1, $0, 3 #max character to read in
syscall
#the rest of the code is down here
但是我实际上应该将文件放在 Windows 上的哪个位置以获取它呢?