helloworld.s主行中的语法错误是什么

时间:2019-01-05 22:04:28

标签: assembly mips qtspim

我是Assembly和Qtspim的新手。 尝试加载helloworld.s程序时,出现语法错误:

spim: (parser) syntax error on line 8 of file helloworld.s main: li $v0,

这是我正在使用的代码:

        .data
msg:   .asciiz "Hello World"
    .extern foobar 4

        .text
        .globl main

main:   li $v0, 4       
        la $a0, msg     
        syscall         
        lw $t1, foobar

        jr $ra          

顺便说一句-我正在使用Mac版的QtSpim 9.1.20。

有什么主意吗?

0 个答案:

没有答案