Skip to content

Commit 409c6e9

Browse files
authored
Fix truth table values for logical gates
fixes #3
1 parent aa86c4f commit 409c6e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/10_teorie/02_hradla.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,8 @@ bool Q = !(A ^ B);
293293
|A|B|AND|OR|XOR|NAND|NOR|XNOR|
294294
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
295295
|0|0|0|0|0|1|1|1|
296-
|0|1|0|1|1|1|1|0|
297-
|1|0|0|1|1|1|1|0|
296+
|0|1|0|1|1|1|0|0|
297+
|1|0|0|1|1|1|0|0|
298298
|1|1|1|1|0|0|0|1|
299299

300300
### Zobrazení logických hradel v logisimu

0 commit comments

Comments
 (0)