Skip to content
Snippets Groups Projects
Commit 7b9284e9 authored by yuichitamiya's avatar yuichitamiya
Browse files

fix tips bit

parent 3b654a52
No related branches found
No related tags found
No related merge requests found
Pipeline #290771 passed
......@@ -235,9 +235,9 @@ void loop() {
1111 1110 ~operand3_1
(3-2) AND
0001 0001 ~operand3_2 (returned result2)
1111 1110 operand3_1
0001 0001 operand3_2 (returned result2)
1111 1110 ~operand3_1
---------
0001 0000 (~operand3_1 & operand3_2) - returned result3
0001 0000 (operand3_2 & ~operand3_1) - returned result3
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment