aboutsummaryrefslogtreecommitdiff
path: root/bonus/ball.sv
blob: 0e4c9f3ad19190394c18290af08ac707ccfcd616 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ball(input logic CLOCK_50, input logic [3:0] KEY, // KEY[3] is async active-low reset
            input logic [9:0] SW, output logic [9:0] LEDR,
            output logic [6:0] HEX0, output logic [6:0] HEX1, output logic [6:0] HEX2,
            output logic [6:0] HEX3, output logic [6:0] HEX4, output logic [6:0] HEX5,
            output logic [7:0] VGA_R, output logic [7:0] VGA_G, output logic [7:0] VGA_B,
            output logic VGA_HS, output logic VGA_VS, output logic VGA_CLK);
  
    // instantiate and connect the VGA adapter and your module

endmodule: ball