MIPS:从命令行参数中读取字符串

时间:2013-06-03 06:27:57

标签: assembly command-line-arguments mips computer-architecture spim

我是大会的新手。 我在从命令行参数中读取字符串时遇到了一些麻烦。

我想从第二个参数中读取字符串thisismymessage到缓冲区。

我想过使用SYSCALL,但不确定如何使用。

$ spim -f program.s file thisismymessage

1 个答案:

答案 0 :(得分:6)

以下几行代码可以解释您所要求的内容:

# $a0 = argc, $a1 = argv
# 4($a1) is first command line argv 8($a1) is second

main:
    lw $a0, 8($a1)       # get second command line argv
    li $v0, 4              # print code for the argument (string)
    syscall                # tells system to print
    li $v0, 10              # exit code
    syscall                # terminate cleanly

参数的数量是$ a0,你可以检查加载的整数值(li)的参数数量到临时寄存器中以进行验证。

命令行参数值argv存储在$ a1中,可以通过加载单词来访问。一个字是4个字节,因此我们可以使用0($ a1)访问argv [0],使用4($ a1)访问argv [1],依此类推。

在这种情况下,我们需要argv [2],我们可以将8($ a1)中的单词(lw)加载到我们选择的任何寄存器中。在这种情况下,我将它加载到$ a0,因为我之后直接打印它。

回顾一下:

# $a0 is argc, $a1 is argv
lw $t0, 8($a1)             # gets argv[2] and stores it in $t0