Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试制作一个汇编程序,但出现以下错误。
这是我第一次使用 QTSimp Simulator。
我的文件以
.data N: .word 5 X: .word 2,4,6,8,10 SUM: .word 0
另一个语法错误
您需要完成该程序。试试这个:
.data N: .word 5 X: .word 2,4,6,8,10 SUM: .word 0 .text .globl main main: #your code here li $v0, 10 syscall .end