diff options
| author | github-classroom[bot] <66690702+github-classroom[bot]@users.noreply.github.com> | 2026-02-05 19:36:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-05 19:36:36 +0000 |
| commit | ead28dd6fed440ccf4667c459778012bb0d95733 (patch) | |
| tree | bbc326fa1b487efc0fe163ef733a76c8a241fbb0 /task2/fillscreen.sv | |
Initial commit
Diffstat (limited to '')
| -rw-r--r-- | task2/fillscreen.sv | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/task2/fillscreen.sv b/task2/fillscreen.sv new file mode 100644 index 0000000..323e7a5 --- /dev/null +++ b/task2/fillscreen.sv @@ -0,0 +1,7 @@ +module fillscreen(input logic clk, input logic rst_n, input logic [2:0] colour, + input logic start, output logic done, + output logic [7:0] vga_x, output logic [6:0] vga_y, + output logic [2:0] vga_colour, output logic vga_plot); + // fill the screen +endmodule + |