Skip to content

Commit fccf04e

Browse files
committed
- Added Lots of LUTs to TOC.
- Cleaned up tables in Lots of LUTs because Atom's and Github's rendering engines are different.
1 parent 45d1659 commit fccf04e

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ A series of lessons on writing HDL for FPGAs. All examples are implemented in Sy
33
and [MyHDL](http://www.myhdl.org/ "MyHDL") for completeness.
44

55
## Table of Contents
6+
* [Lots of LUTs](https://github.com/s-okai/hello-fpga/blob/master/lessons/lots_of_luts/lots_of_luts.md)
67
* [Multiplexers and Latches](https://github.com/s-okai/hello-fpga/blob/master/lessons/multiplexers_and_latches/multiplexers_and_latches.md "Multiplexers and Latches")
78

89
## References

lessons/lots_of_luts/lots_of_luts.md

+6-13
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ a single boolean output. We often express these boolean operators and any boolea
66
functions composed from them as truth tables, which simply show which outputs are
77
produced for a given set or inputs.
88

9-
109
And
1110

1211
| a | b | out |
13-
| - | - | --- |
12+
|:--|:--|:----|
1413
| 0 | 0 | 0 |
1514
| 0 | 1 | 0 |
1615
| 1 | 0 | 0 |
@@ -19,7 +18,7 @@ And
1918
Or
2019

2120
| a | b | out |
22-
| - | - | --- |
21+
|:--|:--|:----|
2322
| 0 | 0 | 0 |
2423
| 0 | 1 | 1 |
2524
| 1 | 0 | 1 |
@@ -28,7 +27,7 @@ Or
2827
Not
2928

3029
| a | out |
31-
| - | --- |
30+
|:--|:----|
3231
| 0 | 1 |
3332
| 1 | 0 |
3433

@@ -38,7 +37,7 @@ truth tables using a hardware construct that you may be familiar with: ROM.
3837
And
3938

4039
| address | out |
41-
| ------- | --- |
40+
|:--------|:----|
4241
| 00 | 0 |
4342
| 01 | 0 |
4443
| 10 | 0 |
@@ -47,7 +46,7 @@ And
4746
Or
4847

4948
| address | out |
50-
| ------- | --- |
49+
|:--------|:----|
5150
| 00 | 0 |
5251
| 01 | 1 |
5352
| 10 | 1 |
@@ -56,7 +55,7 @@ Or
5655
Not
5756

5857
| address | out |
59-
| --------| --- |
58+
|:--------|:----|
6059
| 0 | 1 |
6160
| 1 | 0 |
6261

@@ -85,9 +84,3 @@ power and performance costs that come with it.
8584
* Expensive
8685
* Power hungry
8786
* Must be reprogrammed at power on
88-
89-
90-
91-
92-
93-

0 commit comments

Comments
 (0)