How do you plan to solve it?
module brake_light (input brake_pedal, output reg brake_light); always @(*) begin if(brake_pedal == 1'b1)begin brake_light = 1'b1; end else begin brake_light = 1'b0; end end endmodule