diff options
| author | github-classroom[bot] <66690702+github-classroom[bot]@users.noreply.github.com> | 2025-09-10 21:59:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-10 21:59:56 +0000 |
| commit | a186a9a6be2cb0ece7ecf0bcc27e813f5534603d (patch) | |
| tree | a4cadf53c9e7c47290b54b0446de418a9880e17e /task5/card7seg.sv | |
Initial commit
Diffstat (limited to '')
| -rw-r--r-- | task5/card7seg.sv | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/task5/card7seg.sv b/task5/card7seg.sv new file mode 100644 index 0000000..6de0793 --- /dev/null +++ b/task5/card7seg.sv @@ -0,0 +1,6 @@ +module card7seg(input logic [3:0] card, output logic [6:0] seg7); + + // your code goes here + +endmodule + |