Update VGA module Quadrupled pixel clock Doubled resolution to 1280x800 Added ZigZag encode/decode to ALU
56 lines
1.5 KiB
Verilog
56 lines
1.5 KiB
Verilog
module VGA(
|
|
input wire clk,
|
|
input wire [2:0] rgb_data,
|
|
output wire graphics_trigger,
|
|
output wire [11:0] graphics_coords_x,
|
|
output wire [11:0] graphics_coords_y,
|
|
output wire [2:0] VGA_rgb,
|
|
output wire VGA_hsync,
|
|
output wire VGA_vsync
|
|
);
|
|
|
|
parameter
|
|
//hsync_end = 10'd95,
|
|
//hdat_begin = 10'd143,
|
|
//hdat_end = 10'd783,
|
|
//hpixel_end = 10'd799,
|
|
//vsync_end = 10'd1,
|
|
//vdat_begin = 10'd34,
|
|
//vdat_end = 10'd514,
|
|
//vline_end = 10'd524;
|
|
hsync_end = 11'd190,
|
|
hdat_begin = 11'd286,
|
|
hdat_end = 11'd1566,
|
|
hpixel_end = 11'd1598,
|
|
vsync_end = 11'd1,
|
|
vdat_begin = 11'd68,
|
|
vdat_end = 11'd1028,
|
|
vline_end = 11'd1048;
|
|
|
|
reg [11:0] hcount;
|
|
reg [11:0] vcount;
|
|
wire graphics_clk = clk;
|
|
|
|
wire hcount_ov = (hcount == hpixel_end);
|
|
wire vcount_ov = (vcount == vline_end);
|
|
wire dat_act = ((hcount >= hdat_begin) && (hcount < hdat_end)) && ((vcount >= vdat_begin) && (vcount < vdat_end));
|
|
|
|
assign VGA_hsync = (hcount > hsync_end);
|
|
assign VGA_vsync = (vcount > vsync_end);
|
|
assign VGA_rgb = (dat_act) ? rgb_data : 3'b0;
|
|
assign graphics_coords_x = hcount - hdat_begin;
|
|
assign graphics_coords_y = vcount - vdat_begin;
|
|
assign graphics_trigger = dat_act & graphics_clk;
|
|
|
|
// Clock divider
|
|
//always @(posedge clk) graphics_clk = ~graphics_clk;
|
|
|
|
// Graphics boundary calculation
|
|
always @(posedge graphics_clk) begin
|
|
if(hcount_ov && vcount_ov) vcount <= 11'b0;
|
|
else if(hcount_ov) vcount <= vcount + 11'b1;
|
|
if (hcount_ov) hcount <= 11'd0;
|
|
else hcount <= hcount + 11'd1;
|
|
end
|
|
endmodule
|