diff --git a/ALU.v b/ALU.v index 21c60e5..4f32fff 100644 --- a/ALU.v +++ b/ALU.v @@ -44,7 +44,7 @@ genvar i; generate for(i = 0; i= compare_to) begin - div_int <= pulsemode ? 1 : ~div_int; - div <= 0; - end else begin - if(pulsemode) div_int <= 0; - div <= div + 1; - end + if(div >= compare_to) begin + div_int <= pulsemode ? 1 : ~div_int; + div <= 0; + end else begin + if(pulsemode) div_int <= 0; + div <= div + 1; + end end endmodule diff --git a/VGA.v b/VGA.v index ed1c8dc..000c7f4 100644 --- a/VGA.v +++ b/VGA.v @@ -1,12 +1,12 @@ module VGA( - input wire clk, - input wire [2:0] rgb_data, - output reg graphics_clk, - output wire [9:0] graphics_coords_x, - output wire [9:0] graphics_coords_y, - output wire [2:0] VGA_rgb, - output wire VGA_hsync, - output wire VGA_vsync + input wire clk, + input wire [2:0] rgb_data, + output reg graphics_clk, + output wire [9:0] graphics_coords_x, + output wire [9:0] graphics_coords_y, + output wire [2:0] VGA_rgb, + output wire VGA_hsync, + output wire VGA_vsync ); parameter