1、问:
答:
2、问:
答:
3、问:
答:
4、问:
答:B[g] = A[f] + A[1+f];
7、问:
答:
9、问:
答:
sll $t0, $s1, 2 # $t0 <-- 4*g
add $t0, $t0, $s7 # $t0 <-- Addr(B[g])
lw $t0, 0($t0) # $t0 <-- B[g]
addi $t0, $t0, 1 # $t0 <-- B[g]+1
sll $t0, $t0, 2 # $t0 <-- 4*(B[g]+1) = Addr(A[B[g]+1])
lw $s0, 0($t0) # f <-- A[B[g]+1]
10、问:
答:f = 2*(&A)
11、问:
第二章
原文:https://www.cnblogs.com/FPGAer/p/14489190.html