|
| 1 | +// SeqTableData.js |
| 2 | +const SeqTableData = { |
| 3 | + sequentialcircuit: { |
| 4 | + headers: ["Property", "Combinational", "Sequential"], |
| 5 | + rows: [ |
| 6 | + { |
| 7 | + property: "Output depends on", |
| 8 | + combinational: "Current inputs only", |
| 9 | + sequential: "Inputs + stored state", |
| 10 | + }, |
| 11 | + { |
| 12 | + property: "Memory elements", |
| 13 | + combinational: "None", |
| 14 | + sequential: "Flip-flops / Latches", |
| 15 | + }, |
| 16 | + { |
| 17 | + property: "Feedback paths", |
| 18 | + combinational: "No", |
| 19 | + sequential: "Yes", |
| 20 | + }, |
| 21 | + { |
| 22 | + property: "Clock required", |
| 23 | + combinational: "No (usually)", |
| 24 | + sequential: "Yes (synchronous)", |
| 25 | + }, |
| 26 | + { |
| 27 | + property: "Examples", |
| 28 | + combinational: "Adder, Mux, Decoder", |
| 29 | + sequential: "Counter, Register, FSM", |
| 30 | + }, |
| 31 | + ], |
| 32 | + }, |
| 33 | + SRLatch: { |
| 34 | + headers: ["S", "R", "Q (next)", "Q̄ (next)", "Action"], |
| 35 | + rows: [ |
| 36 | + { |
| 37 | + S: "0", |
| 38 | + R: "0", |
| 39 | + "Q (next)": "Q", |
| 40 | + "Q̄ (next)": "Q̄", |
| 41 | + Action: "No change (memory)", |
| 42 | + }, |
| 43 | + { S: "1", R: "0", "Q (next)": "1", "Q̄ (next)": "0", Action: "Set" }, |
| 44 | + { S: "0", R: "1", "Q (next)": "0", "Q̄ (next)": "1", Action: "Reset" }, |
| 45 | + { |
| 46 | + S: "1", |
| 47 | + R: "1", |
| 48 | + "Q (next)": "?", |
| 49 | + "Q̄ (next)": "?", |
| 50 | + Action: "⚠ Forbidden", |
| 51 | + }, |
| 52 | + ], |
| 53 | + }, |
| 54 | +}; |
| 55 | + |
| 56 | +export default SeqTableData; |
0 commit comments