aboutsummaryrefslogtreecommitdiff
path: root/task2/fillscreen.sv
blob: 323e7a596e252dcee5a3196b16cac7ee120e8416 (plain) (blame)
1
2
3
4
5
6
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