- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 MIPS 模拟器。
当我尝试在模拟器中打开包含我的代码的文本文件时发生
我无法理解为什么它不能在 QTSpim 上运行。我得到错误
spim: (parser) syntax error line 8
代码:
#This program read the given array value one by one
#then compare and find largest
#Display largest and it's count
#Data declaration
.data
a: .word 5,2,15,3,7,15,8,9,5,2,15,3,7 #Initialize an array
space: .asciiz " " #Get space
nextLine: .asciiz "\n" #for \n
big: .asciiz "bigger....\n" #Display bigger
small: .asciiz "smaller....\n" #Display smaller
equal: .asciiz "same....\n" #Display same
#Output display strings
Largest: .asciiz "The largest number is "
LargestCount: .asciiz "The largest number is included "
times: .asciiz " times\n"
#Main program
.text
.globl main
main:
la $s0,a #Get the address of the array
addi $s1,$0,13 #size of the array
addi $s2,$0,0 #for largest number
addi $s3,$0,0 #For largest count
addi $t0,$0,0 #i
addi $t1,$0,0 #j
#Loop for array data print
Loop:
beq $t0,$s1,nextLoop #check the counter reach array size
lw $a0,0($s0) #Get value from array to print
addi $v0,$0,1 #Integer print system caa
syscall #Print integer value in a0
la $a0,space #get the address of space string
addi $v0,$0,4 #System call to print string
syscall #Print space
addi $t0,$t0,1 #Increment counter
addi $s0,$s0,4 #to get next data contain address
j Loop #repeat loop
#Find larget and it's count
nextLoop:
la $a0,nextLine #get the address of \n print
addi $v0,$0,4 #String print system call
syscall #print string
addi $t0,$0,0 #for loop counter
la $s0,a #Get the address of the array
#Loop through array value
forLoop:
beq $t0,$s1,print #check the counter reach array size
move $a1,$s2 #For compare method argument
lw $a0,0($s0) #Get value from array
jal compare #call compare function
addi $t1,$v0,0 #j=compare(largest,a[i])
beq $t1,0,biggest #If the compare result 0 means value bigger
beq $t1,1,same #If the compare result 1 means same value
beq $t1,2,smallest #If the compare result 2 means value smaller
#Bigger case
biggest:
la $a0,big
addi $v0,$0,4
syscall
lw $s2,($s0)
addi $s3,$0,1
addi $t0,$t0,1
addi $s0,$s0,4
j forLoop
#Same case
same:
la $a0,equal
addi $v0,$0,4
syscall
addi $s3,$s3,1
addi $t0,$t0,1
addi $s0,$s0,4
j forLoop
smallest:
#Smaller case
la $a0,small
addi $v0,$0,4
syscall
addi $t0,$t0,1
addi $s0,$s0,4
j forLoop
#Print result
print:
la $a0,Largest #Largest string display string address
addi $v0,$0,4 #System call to print string
syscall #print
move $a0,$s2 #To pri t largest number move into a0
addi $v0,$0,1 #System call to print integer
syscall #Integer print
#Print \n
la $a0,nextLine
addi $v0,$0,4
syscall
#Print largest count atring
la $a0,LargestCount
addi $v0,$0,4
syscall
#Print count
move $a0,$s3
addi $v0,$0,1
syscall
#Times string print
la $a0,times
addi $v0,$0,4
syscall
#End of the program
exit:
addi $v0,$0,10 #Terminate the program normally system call
syscall #End the program
#Compare method
compare:
move $t3,$ra
jal subt #Call subtract function
bgt $v0,0,return2 #If sub value greaterthan 0 return 2
beq $v0,0,return1 #If sub value = 0 return 1
addi $v0,$0,0 #Other wise return 0 as result
move $ra,$t3
jr $ra #Return to main
#Return value 2 as result of the function call
return2:
addi $v0,$0,2
move $ra,$t3
jr $ra
#Return value 1 as result of the function call
return1:
addi $v0,$0,1
move $ra,$t3
jr $ra
#Subtract function
subt:
sub $v0,$a1,$a0
jr $ra
这在 MARS 上运行,我不确定为什么它不能在 QTSpim 上运行。
最佳答案
a: .word 5,2,15,3,7,15,8,9,5,2,15,3,7
用空格替换,
。mips 不会占用 ,
试试这个:
a: .word 5 2 15 3 7 15 8 9 5 2 15 3 7
关于assembly - 运行代码时出现错误 MIPS “spim: (parser) syntax error”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60405254/
我想解析一些文本,其中某些字段在大多数情况下都具有结构,但偶尔(由于特殊大小写、拼写错误等)该结构会丢失。 例如常规情况是 Cost: 5,但偶尔会显示 Cost: 5m 或 Cost: 3 + 1
以下有什么区别: parser.setFeature("http://xml.org/sax/features/validation",true); and parser.setFeature("ht
我尝试在 Windows 8.1 上的 Git Bash 客户端中执行 npm install,但收到以下错误: npm WARN optional SKIPPING OPTIONAL DEPENDE
试图理解 evancz/url-parser 模块时,我偶然发现了这种我难以理解的类型声明:( source ) type Parser a b = Parser (State a -> List
我长期使用下面的 TypeScript 和 Vue 预设。它有效,但我还没有理解每个选项,现在要理解它。第一:parser之间有什么区别?和 @typescript-eslint/parser ? p
我正在尝试使用node-sql-parser在nodejs中解析sql查询。 const {Parser} = require('node-sql-parser'); const parser = n
自定义指令中的 ngModelCtrl.$parsers.unshift 和 ngModelCtrl.$parsers.push 之间的确切区别是什么。 当发生对模型生效但对表单本身无效的事情时,我想
我正在寻找 SAX 和 Pull Parser 之间的主要区别。我知道 SAX 解析器非常适合处理大型 XML 文件,因为它不存储 XML 并且只在一个方向上遍历。与 DOM 相比。但我无法找到 SA
我已经按照存档中的说明成功(?)安装了 QJson 库。但是编译器给我这个错误: Undefined reference to QJSon::Parser::Parser(). 我找到了安装库文件的位
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
尝试实现 Cucumber 来进行一些自动化测试。当我使用 junit 运行测试时,出现以下错误 项目路径: src/test/java/ cucumberJava -cucumberjava,ja
我已经阅读了我能找到的所有文档,但是我找不到关于这两个中间件的作用的简单解释。 body-parser 中的body 指的是什么?为什么需要解析正文? Cookie 也类似。我是否更正了 cookie
我在gradle项目中使用Xerces jar,然后在gradle插件中使用该项目的jar:实际上,我正在开发一个gradle插件,其中包含使用gradle项目jar的某些功能的自定义任务;当我尝试运
我正在尝试连接到 Linux 上的 FTP 服务器,当我执行 ftp.listFiles(remote); 时遇到异常 SYST 215 Linux Exception in thread "AW
我有react-app的示例安装,我得到了以下内容 Error: Failed to load parser '@typescript-eslint/parser' declared in '.esl
我在 there 中提到过类似的问题.我正在使用 mvn clean compile site 命令,我的版本是: cobertura.version: 2.5.1 findbugs.version:
我正在 Eclipse 中开发 GWT 应用程序并使用 jdom2 读取一些自定义 xml 属性文件。 在最近的更新之后,我的应用程序现在在尝试读取 xml 文件时失败并出现上述错误。相关堆栈跟踪是:
我正在使用 spring+maven。我正在 tomcat 服务器中部署我的应用程序。当我尝试运行我的应用程序时,突然出现以下错误。 INFO: Starting Servlet Engine: Ap
我在玩dateutil module在 Python 2.7.3 中。我只是想使用: import dateutil dateutil.parser.parse("01-02-2013") 但我得到了
一.入参解析库 argparse 有时候写Python脚本,需要处理入参[-h][-v][-F]...等情况,如果自己来解析的话,会花费很多时间,而且也容易出问题,好在Python有现成的li
我是一名优秀的程序员,十分优秀!