![]() |
CS1101: Laboratory 8(b)Circuit EquivalenceAcademic Year 2006-2007Lecturer: Dr. Barry O'SullivanDepartment of Computer Science University College Cork |
The objective of this lab is to introduce students to a logic design tool called TKGate and to use it to help develop a circuit to implement a given truth-table.
cs1101submit Four.v
The submission deadline is 5pm on Friday 16th of February.
Inputs | F | |||
---|---|---|---|---|
A | B | C | D | |
0 | 0 | 0 | 0 | 1 |
0 | 0 | 0 | 1 | 0 |
0 | 0 | 1 | 0 | 0 |
0 | 0 | 1 | 1 | 0 |
0 | 1 | 0 | 0 | 1 |
0 | 1 | 0 | 1 | 1 |
0 | 1 | 1 | 0 | 0 |
0 | 1 | 1 | 1 | 1 |
1 | 0 | 0 | 0 | 1 |
1 | 0 | 0 | 1 | 0 |
1 | 0 | 1 | 0 | 1 |
1 | 0 | 1 | 1 | 0 |
1 | 1 | 0 | 0 | 1 |
1 | 1 | 0 | 1 | 0 |
1 | 1 | 1 | 0 | 1 |
1 | 1 | 1 | 1 | 0 |
Here is a table of boolean identities which you will find useful.
Return to the CS1101 Home Page