5

空き時間があるので、MIPS アセンブリを学習しようとしています。数値をスタックにプッシュしてからポップするプログラムを作成しようとしています。負の数に達する前にポップされた数をカウントし、負の数を取得するたびに、ポップされた負の数と正の数の数を数えたいと思います。

これまでのところ、私はこれを得ました:

 #count the number of negative words on the stock by poping the stack until a non-    negative word is found 
#and print out the number of words found

.text
.globl main
#this code reads the numbers from the data area and stores in them in a stack
#the numbers are located in the test area and the number of numbers in the num area

main:   la $t0, test
lw $t1, num
loop:   lw $t2,($t0)
sub $sp, $sp, 4
sw $t2($sp)
add $t0, $t0, 4
add $t1, $t1, -1
bnez $t1, loop


#pop from the stack and print the number of numbers in the stack before a nonnegative number is reached 
#then keep count of how many negative and positive ones there are total

#code I cannot come up with would go here

.data
test:   .word
2, 0xfffabfff,2,-4,-9,0x99999999,0x90000000,-2147479536,0x80000000
num:    .word 10
ans:    .asciiz "Number is = "
endl:   .asciiz "\n"

私が知る限り、右に押すようになりましたが、右に押すことと数えることがわかりません。私はここから何をしなければなりませんか?

4

1 に答える 1