在哪里为MARS放置.txt文件

时间:2012-11-30 02:15:41

标签: assembly input io mips mips32

我正在使用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上以便将其接收?

1 个答案:

答案 0 :(得分:1)

您必须使用系统调用13打开文件,然后使用系统调用14从中读取并将其内容存储到缓冲区中。

这是一个让您入门的片段,只需填写代码中的空白:

.data
filename: .asciiz "file.txt"
buffer: .space 1024

.text

    la $a0, filename
    li $a1, 0       # readonly
    li $a2, 0
    li $v0, 13
    syscall         # open file
    bltz $v0, file_error
    move $a0, $v0    
    la $a1, buffer
    li $a2, 1024
read_file:
    li $v0, 14
    syscall
    beqz $v0, read_done
    bltz $v0, read_error
    addu $a1, $a1, $v0   # adjust buffer pointer
    subu $a2, $a2, $v0
    bnez $a2, read_file   # If buffer not full and not EOF, continue reading
read_done:
   # File copied to buffer
   # Your code goes here

file_error:
   # Code to take action if file errors occur (e.g. file not found)

read_error: 
   # Code to take action if read errors occur

如果您使用的是MARS,则该文件应位于当前目录(您开始使用MARS的位置)。