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

Subversion Repositories eco32

[/] [eco32/] [trunk/] [fpga/] [mc/] [src/] [dsp/] [bpp9/] [display.v] - Diff between revs 27 and 123

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 27 Rev 123
Line 1... Line 1...
 
//
 
// display.v -- 30x80 character display, with attributes
 
//
 
 
 
 
module display(clk,
module display(clk,
               dsp_row, dsp_col, dsp_en, dsp_wr,
               dsp_row, dsp_col, dsp_en, dsp_wr,
               dsp_wr_data, dsp_rd_data,
               dsp_wr_data, dsp_rd_data,
               hsync, vsync, r, g, b);
               hsync, vsync, r, g, b);
 
 
    input clk;
    input clk;
    input [4:0] dsp_row;
    input [4:0] dsp_row;
    input [6:0] dsp_col;
    input [6:0] dsp_col;
    input dsp_en;
    input dsp_en;
    input dsp_wr;
    input dsp_wr;
Line 106... Line 110...
    .pixel(chrgen_pixel),
    .pixel(chrgen_pixel),
    .blank(chrgen_blank),
    .blank(chrgen_blank),
    .hsync_in(chrgen_hsync),
    .hsync_in(chrgen_hsync),
    .vsync_in(chrgen_vsync),
    .vsync_in(chrgen_vsync),
    .blink(chrgen_blink),
    .blink(chrgen_blink),
 
    .hsync(hsync),
 
    .vsync(vsync),
    .r(r[2:0]),
    .r(r[2:0]),
    .g(g[2:0]),
    .g(g[2:0]),
    .b(b[2:0]),
    .b(b[2:0])
    .hsync(hsync),
 
    .vsync(vsync)
 
  );
  );
 
 
endmodule
endmodule
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

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