3

私は現在MIPSアセンブリのクラスに参加しており、使用している本は絶版になっているため、理解できるようにインターネットを利用して支援を求めています。このプログラムは3つの整数を取り込んでいます。そのうちの2つはadd/sub / mult / divで、3つ目は演算子です。これがコードです。

    .text
    .globl __start
__start:

    # Prompt for first int and accept first int
    la $a0,firstint
    li $v0,4
    syscall

    li $v0,5
    move $s0, $v0
    syscall

    # Prompt for second int and accept second int
    la $a0,firstint
    li $v0,4
    syscall

    li $v0,5
    move $s1, $v0
    syscall

    # Prompt for operation
    la $a0,operation
    li $v0,4
    syscall

    li $v0,5
    move $s2, $v0
    syscall

    beq $s2,0,__add0

    li $v0,10
    syscall

__add0:
    la $a0,added
    li $v0,4
    syscall

    add $a0, $s0, $s1
    li $a0,1
    syscall


    .data
firstint:   .asciiz "Enter the first integer: "
secondint:  .asciiz "Enter the second integer: "
operation:  .asciiz "Enter operation (add=0, subtract=1, multiply=2, divide=3): "
added:      .asciiz "The added number is: "

私の理解では、$ s2の値が0に等しい場合、beqはadd0にジャンプします。しかし、それは起こっていないようです。操作タイプを入力すると出力が停止します。出力例:

Enter the first integer: 10
Enter the first integer: 5
Enter operation (add=0, subtract=1, multiply=2, divide=3): 0

-- program is finished running --

何か案は?

4

1 に答える 1

3

移動する前にシステムコールを実行する必要があります。

li $v0,5
syscall
move $s2, $v0
于 2013-02-13T16:28:46.837 に答える