1

我这周刚开始用汇编语言编程,但遇到了一些麻烦。我正在使用 PCSpim 在 MIPS 中制作一个程序,该程序提示用户输入两个非负整数。但出于某种原因,我的代码使两个提示出现在同一行,并且只接受一个整数。谁能帮我吗?我根本不习惯语法,可以使用一些指针。

.text
.align 2
.globl main

# Prompts the user for two non-negative integers, x and y, and then finds the greatest common divisor of the two. 

main:

la  $a0, prompt
li  $v0, 4
syscall             # Display prompt for the x integer.

li  $v0, 5
syscall             # Get x integer response.

move    $t0, $v0

la  $a1, secondprompt 
li  $v1, 4          
syscall             # Display prompt for the y integer

li  $v1, 5           # Get y integer response
syscall

move    $t1, $v1

prompt: .asciiz "Enter a non-negative integer: \n"
secondprompt: .asciiz "Enter a second non-negative integer: \n"
4

1 回答 1

3

您在哪里读到应该使用 $a1 和 $v1?这两个数字应该是 $a0 和 $v0。

于 2011-10-10T01:36:34.507 回答