0

2 つの 2*2 行列を乗算するための IAS 命令セットを使用してプログラムを作成し、その結果を別の行列 C に格納する必要があります。行列の加算について別の人が投稿したプログラムを見ました。

**********************
* Initialize a variable 'count' to 999

Label: TOP
00000001    LOAD M(A[count])            Transfer M(A[count]) to the accumulator
00000101    ADD M(B[count])             Add M(B[count]) to AC and store result in AC
00100001    STOR M(C[count])            Transfer contents of accumulator to memory location C[count]
00001010    LOAD M(address of count)    Transfer the contents of M(address of count) to the AC
00000110    SUB M(the number 1)         Subtract one from AC and store in AC
00100001    STOR M(D)                   Transfer contents of AC to location M(D)
00001111    JUMP+ M(X,0:19)             If number in accumulator is non-negative take next
                                        instruction from left half of M(X)

**************************

変数 'c​​ount' を 999 に初期化するにはどうすればよいですか?

4

1 に答える 1