module video_sig_gen #( parameter ACTIVE_H_PIXELS = 1280, parameter H_FRONT_PORCH = 110, parameter H_SYNC_WIDTH = 40, parameter H_BACK_PORCH = 220, parameter ACTIVE_LINES = 720, parameter V_FRONT_PORCH = 5, parameter V_SYNC_WIDTH = 5, parameter V_BACK_PORCH = 20, parameter FPS = 60) ( input wire pixel_clk, input wire rst, output logic [$clog2(TOTAL_PIXELS)-1:0] h_count, output logic [$clog2(TOTAL_LINES)-1:0] v_count, output logic v_sync, //vertical sync out output logic h_sync, //horizontal sync out output logic active_draw, output logic new_frame, //single cycle enable signal output logic [5:0] frame_count); //frame localparam TOTAL_PIXELS = 0; //figure this out localparam TOTAL_LINES = 0; //figure this out //your code here endmodule