go to previous page   go to home page   go to next page

Answer:

FEED      1111 1110 1110 1101
BECA      1011 1110 1100 1010
————      ———— ———— ———— ————
0110      0000 0001 0001 0000

Summary

The table shows the register with register bitwise logic operations. Register d is the destination (where the result goes); the other two registers s and t contain the operands.

AND OR XORNOR
and d,s,t or d,s,txor d,s,tnor d,s,t
$d <— $s and $t $d <— $s or $t $d <— $s xor $t $d <— $s nor $t

Here is a summary of the operations:

operand 0011
operand 0101
AND 0001
OR 0111
XOR 0110
NOR 1000

 

QUESTION 11:

Fill in the following:

0 NOR 0 = NOT 0 =
1 NOR 0 = NOT 1 = ;

Now answer the question: NOT X  =  X 0