mirror of
https://github.com/Steffo99/appunti-magistrali.git
synced 2024-11-22 18:44:17 +00:00
10 lines
328 B
Markdown
10 lines
328 B
Markdown
Operatore logico bitwise con la seguente tavola di verità:
|
|
|
|
| Input 1 | Input 2 | Output |
|
|
|--------:|--------:|-------:|
|
|
| 0 | 0 | 0 |
|
|
| 0 | 1 | 1 |
|
|
| 1 | 0 | 1 |
|
|
| 1 | 1 | 0 |
|
|
|
|
Inverte i bit del primo operando specificati nel secondo operando, o viceversa.
|