打开二进制文件进行阅读

时间:2012-11-23 20:10:57

标签: mips binaryfiles system-calls mars-simulator

我正在尝试打开二进制文件,以便在mars mips模拟器中阅读:

.data
file: .asciiz "o.bmp"
.text
li $v0, 13
la $a0, file
li $a1, 0
li $a2, 0
syscall         #file descriptor of oepened file in v0
beq $v0, -1, end            #my program every time jumps to end so sth is wrong    

1 个答案:

答案 0 :(得分:0)

溶液:

文件mars.jar(或其他名称的火星程序)必须与文件“o.bmp”在同一目录中