https://github.com/mattvenn/fpga-tool-flow-video
https://github.com/mattvenn/fpga-tool-flow-video
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mattvenn/fpga-tool-flow-video
- Owner: mattvenn
- Created: 2019-07-30T15:30:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-18T15:39:55.000Z (over 5 years ago)
- Last Synced: 2025-04-01T18:09:56.669Z (2 months ago)
- Language: Makefile
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# truth table for AND, OR and XOR
I3 I2 I1 I0 | O& O| O^
----------------------
x x 0 0 | 0 0 0
x x 0 1 | 0 1 1
x x 1 0 | 0 1 1
x x 1 1 | 1 1 0# LUT configs for AND, OR and XOR
a & b: 1000 = 8
a | b: 1110 = 14
a ^ b: 0110 = 6