OpenCores
URL https://opencores.org/ocsvn/t6507lp/t6507lp/trunk

Subversion Repositories t6507lp

[/] [t6507lp/] [trunk/] [rtl/] [verilog/] [vga_controller.v] - Diff between revs 232 and 233

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 232 Rev 233
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////                                                                    ////
////                                                                    ////
//// t2600 IP Core                                                      ////
//// t2600 IP Core                                                      ////
////                                                                    ////
////                                                                    ////
//// This file is part of the t2600 project                             ////
//// This file is part of the t2600 project                             ////
//// http://www.opencores.org/cores/t2600/                              ////
//// http://www.opencores.org/cores/t2600/                              ////
////                                                                    ////
////                                                                    ////
//// Description                                                        ////
//// Description                                                        ////
//// VGA controller                                                     ////
//// VGA controller                                                     ////
////                                                                    ////
////                                                                    ////
//// TODO:                                                              ////
//// TODO:                                                              ////
//// - Feed the controller with data                                    ////
//// - Feed the controller with data                                    ////
////                                                                    ////
////                                                                    ////
//// Author(s):                                                         ////
//// Author(s):                                                         ////
//// - Gabriel Oshiro Zardo, gabrieloshiro@gmail.com                    ////
//// - Gabriel Oshiro Zardo, gabrieloshiro@gmail.com                    ////
//// - Samuel Nascimento Pagliarini (creep), snpagliarini@gmail.com     ////
//// - Samuel Nascimento Pagliarini (creep), snpagliarini@gmail.com     ////
////                                                                    ////
////                                                                    ////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////                                                                    ////
////                                                                    ////
//// Copyright (C) 2001 Authors and OPENCORES.ORG                       ////
//// Copyright (C) 2001 Authors and OPENCORES.ORG                       ////
////                                                                    ////
////                                                                    ////
//// This source file may be used and distributed without               ////
//// This source file may be used and distributed without               ////
//// restriction provided that this copyright statement is not          ////
//// restriction provided that this copyright statement is not          ////
//// removed from the file and that any derivative work contains        ////
//// removed from the file and that any derivative work contains        ////
//// the original copyright notice and the associated disclaimer.       ////
//// the original copyright notice and the associated disclaimer.       ////
////                                                                    ////
////                                                                    ////
//// This source file is free software; you can redistribute it         ////
//// This source file is free software; you can redistribute it         ////
//// and/or modify it under the terms of the GNU Lesser General         ////
//// and/or modify it under the terms of the GNU Lesser General         ////
//// Public License as published by the Free Software Foundation;       ////
//// Public License as published by the Free Software Foundation;       ////
//// either version 2.1 of the License, or (at your option) any         ////
//// either version 2.1 of the License, or (at your option) any         ////
//// later version.                                                     ////
//// later version.                                                     ////
////                                                                    ////
////                                                                    ////
//// This source is distributed in the hope that it will be             ////
//// This source is distributed in the hope that it will be             ////
//// useful, but WITHOUT ANY WARRANTY; without even the implied         ////
//// useful, but WITHOUT ANY WARRANTY; without even the implied         ////
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR            ////
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR            ////
//// PURPOSE. See the GNU Lesser General Public License for more        ////
//// PURPOSE. See the GNU Lesser General Public License for more        ////
//// details.                                                           ////
//// details.                                                           ////
////                                                                    ////
////                                                                    ////
//// You should have received a copy of the GNU Lesser General          ////
//// You should have received a copy of the GNU Lesser General          ////
//// Public License along with this source; if not, download it         ////
//// Public License along with this source; if not, download it         ////
//// from http://www.opencores.org/lgpl.shtml                           ////
//// from http://www.opencores.org/lgpl.shtml                           ////
////                                                                    ////
////                                                                    ////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
 
 
`include "timescale.v"
`include "timescale.v"
 
 
module vga_controller ( reset_n, clk_50, pixel, vert_counter, SW, VGA_R, VGA_G, VGA_B, LEDR, VGA_VS, VGA_HS, clk_358);
module vga_controller ( reset_n, clk_50, pixel, read_data, SW, VGA_R, VGA_G, VGA_B, LEDR, VGA_VS, VGA_HS, read_addr);
 
 
input reset_n;
input reset_n;
input clk_50;
input clk_50;
input [8:0] SW;
input [8:0] SW;
input [11:0] pixel;
input [2:0] pixel;
input [4:0] vert_counter;
input [2:0] read_data;
output reg [3:0] VGA_R;
output reg [3:0] VGA_R;
output reg [3:0] VGA_G;
output reg [3:0] VGA_G;
output reg [3:0] VGA_B;
output reg [3:0] VGA_B;
output [9:0] LEDR;
output [9:0] LEDR;
output reg VGA_VS;
output reg VGA_VS;
output reg VGA_HS;
output reg VGA_HS;
input clk_358;
output reg [10:0] read_addr;
 
 
reg clk_25;
reg clk_25;
reg [9:0] hc;
reg [9:0] hc;
reg [9:0] vc;
reg [9:0] vc;
reg vsenable;
reg vsenable;
wire vidon;
wire vidon;
 
 
 
reg [11:0] vid_data;
 
 
assign LEDR[8:0] = SW;
assign LEDR[8:0] = SW;
assign LEDR[9] = reset_n;
assign LEDR[9] = reset_n;
 
 
always @ (posedge clk_50 or negedge reset_n)
always @ (posedge clk_50 or negedge reset_n)
begin
begin
        if (!reset_n) begin
        if (!reset_n) begin
                clk_25 <= 0;
                clk_25 <= 0;
        end
        end
        else begin
        else begin
                clk_25 <= !clk_25;
                clk_25 <= !clk_25;
        end
        end
end
end
 
 
always @ (posedge clk_25 or negedge reset_n)
always @ (posedge clk_25 or negedge reset_n)
begin
begin
        if (!reset_n) begin
        if (!reset_n) begin
                hc <= 0;
                hc <= 0;
                VGA_HS <= 1;
                VGA_HS <= 1;
                vsenable <= 0;
                vsenable <= 0;
        end
        end
        else if (hc < 640) begin
        else if (hc < 640) begin
                hc <= hc + 1;
                hc <= hc + 1;
                vsenable <= 0;
                vsenable <= 0;
                VGA_HS <= 1;
                VGA_HS <= 1;
        end
        end
        else if (hc < 640 + 16) begin
        else if (hc < 640 + 16) begin
                VGA_HS <= 1;
                VGA_HS <= 1;
                hc <= hc + 1;
                hc <= hc + 1;
                vsenable <= 0;
                vsenable <= 0;
        end
        end
        else if (hc < 640 + 16 + 96) begin
        else if (hc < 640 + 16 + 96) begin
                VGA_HS <= 0;
                VGA_HS <= 0;
                hc <= hc + 1;
                hc <= hc + 1;
                vsenable <= 0;
                vsenable <= 0;
        end
        end
        else if (hc < 640 + 16 + 96 + 48) begin
        else if (hc < 640 + 16 + 96 + 48) begin
                VGA_HS <= 1;
                VGA_HS <= 1;
                hc <= hc + 1;
                hc <= hc + 1;
                vsenable <= 0;
                vsenable <= 0;
        end
        end
        else begin
        else begin
                VGA_HS <= 1;
                VGA_HS <= 1;
                hc <= 0;
                hc <= 0;
                vsenable <= 1;
                vsenable <= 1;
        end
        end
end
end
 
 
always @ (posedge clk_25 or negedge reset_n)
always @ (posedge clk_25 or negedge reset_n)
begin
begin
        if (!reset_n) begin
        if (!reset_n) begin
                vc <= 0;
                vc <= 0;
                VGA_VS <= 1;
                VGA_VS <= 1;
        end
        end
        else begin
        else begin
                if (vsenable == 1) begin
                if (vsenable == 1) begin
                        vc <= vc + 1;
                        vc <= vc + 1;
                end
                end
                if (vc < 480) begin
                if (vc < 480) begin
                        VGA_VS <= 1;
                        VGA_VS <= 1;
                end
                end
                else if (vc < 480 + 11) begin
                else if (vc < 480 + 11) begin
                        VGA_VS <= 1;
                        VGA_VS <= 1;
                end
                end
                else if (vc < 480 + 11 + 2) begin
                else if (vc < 480 + 11 + 2) begin
                        VGA_VS <= 0;
                        VGA_VS <= 0;
                end
                end
                else if (vc < 480 + 11 + 2 + 31) begin
                else if (vc < 480 + 11 + 2 + 31) begin
                        VGA_VS <= 1;
                        VGA_VS <= 1;
                end
                end
                else begin
                else begin
                        vc <= 0;
                        vc <= 0;
                        VGA_VS <= 1;
                        VGA_VS <= 1;
                end
                end
        end
        end
end
end
 
 
reg [11:0] pixel_reg;
 
 
 
always @ (posedge clk_358 or negedge reset_n) begin
 
        if (!reset_n) begin
 
                pixel_reg <= 12'd0;
 
        end
 
        else begin
 
                pixel_reg <= pixel;
 
        end
 
end
 
 
 
always @ (posedge clk_25) begin
always @ (posedge clk_25) begin
 
        //if (reset_n == 1'b0) begin
        VGA_R[0] <= 0;
        VGA_R[0] <= 0;
        VGA_G[0] <= 0;
                VGA_G[0] <= 0;
        VGA_B[0] <= 0;
                VGA_B[0] <= 0;
        VGA_R[1] <= 0;
                VGA_R[1] <= 0;
        VGA_G[1] <= 0;
                VGA_G[1] <= 0;
        VGA_B[1] <= 0;
                VGA_B[1] <= 0;
        VGA_R[2] <= 0;
                VGA_R[2] <= 0;
        VGA_G[2] <= 0;
                VGA_G[2] <= 0;
        VGA_B[2] <= 0;
                VGA_B[2] <= 0;
        VGA_R[3] <= 0;
                VGA_R[3] <= 0;
        VGA_G[3] <= 0;
                VGA_G[3] <= 0;
        VGA_B[3] <= 0;
        VGA_B[3] <= 0;
 
        //end
 
        //else
        if (vidon == 1) begin
        if (vidon == 1) begin
                VGA_R[0] <= pixel_reg[0];
                if (hc < 480 && vc < 400) begin
                VGA_R[1] <= pixel_reg[1];
                        VGA_R[0] <= vid_data[0];
                VGA_R[2] <= pixel_reg[2];
                        VGA_R[1] <= vid_data[1];
                VGA_R[3] <= pixel_reg[3];
                        VGA_R[2] <= vid_data[2];
                VGA_G[0] <= pixel_reg[4];
                        VGA_R[3] <= vid_data[3];
                VGA_G[1] <= pixel_reg[5];
                        VGA_G[0] <= vid_data[4];
                VGA_G[2] <= pixel_reg[6];
                        VGA_G[1] <= vid_data[5];
                VGA_G[3] <= pixel_reg[7];
                        VGA_G[2] <= vid_data[6];
                VGA_B[0] <= pixel_reg[8];
                        VGA_G[3] <= vid_data[7];
                VGA_B[1] <= pixel_reg[9];
                        VGA_B[0] <= vid_data[8];
                VGA_B[2] <= pixel_reg[10];
                        VGA_B[1] <= vid_data[9];
                VGA_B[3] <= pixel_reg[11];
                        VGA_B[2] <= vid_data[10];
 
                        VGA_B[3] <= vid_data[11];
 
                end
 
        end
 
end
 
 
 
always @ (*) begin
 
        if (hc < 400 && vc < 480) begin
 
                read_addr = hc/10 + (vc/10)*48;
 
 
 
                //case (read_data)
 
                //      default: begin
 
                                vid_data = 12'd10;
 
                //      end
 
                //endcase
 
        end
 
        else begin
 
                read_addr = 10'd0;
 
                vid_data = 12'b101010101010;
        end
        end
 
 
end
end
 
 
assign vidon = (hc < 640 && vc < 480) ? 1 : 0;
assign vidon = (hc < 640 && vc < 480) ? 1 : 0;
 
 
endmodule
endmodule
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.