aboutsummaryrefslogtreecommitdiff
path: root/bonus/balls.sv
blob: 06b72d7fc67070f08f4ea75d8aa81cf0cdb80d2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module balls(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: balls