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

Subversion Repositories eco32

[/] [eco32/] [trunk/] [fpga/] [mc/] [boards/] [xsa-xst-3/] [src/] [toplevel/] [eco32.v] - Diff between revs 67 and 68

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

Rev 67 Rev 68
Line 1... Line 1...
//
//
// eco32.v -- toplevel description of the ECO32 system
// eco32.v -- ECO32 top-level description
//
//
 
 
 
 
module eco32(clk_in,
module eco32(clk_in,
             reset_inout_n,
             reset_inout_n,
Line 22... Line 22...
             flash_we_n,
             flash_we_n,
             flash_rst_n,
             flash_rst_n,
             flash_byte_n,
             flash_byte_n,
             flash_a,
             flash_a,
             flash_d,
             flash_d,
             hsync,
             vga_hsync,
             vsync,
             vga_vsync,
             r,
             vga_r,
             g,
             vga_g,
             b,
             vga_b,
             ps2_clk,
             ps2_clk,
             ps2_data,
             ps2_data,
             rs232_0_rxd,
             rs232_0_rxd,
             rs232_0_txd,
             rs232_0_txd,
             rs232_1_rxd,
             rs232_1_rxd,
Line 72... Line 72...
    output flash_rst_n;
    output flash_rst_n;
    output flash_byte_n;
    output flash_byte_n;
    output [19:0] flash_a;
    output [19:0] flash_a;
    input [15:0] flash_d;
    input [15:0] flash_d;
    // VGA display
    // VGA display
    output hsync;
    output vga_hsync;
    output vsync;
    output vga_vsync;
    output [2:0] r;
    output [2:0] vga_r;
    output [2:0] g;
    output [2:0] vga_g;
    output [2:0] b;
    output [2:0] vga_b;
    // keyboard
    // keyboard
    input ps2_clk;
    input ps2_clk;
    input ps2_data;
    input ps2_data;
    // serial line 0
    // serial line 0
    input rs232_0_rxd;
    input rs232_0_rxd;
Line 353... Line 353...
    .wr(dsp_wr),
    .wr(dsp_wr),
    .addr(dsp_addr[13:2]),
    .addr(dsp_addr[13:2]),
    .data_in(dsp_data_in[15:0]),
    .data_in(dsp_data_in[15:0]),
    .data_out(dsp_data_out[15:0]),
    .data_out(dsp_data_out[15:0]),
    .wt(dsp_wt),
    .wt(dsp_wt),
    .hsync(hsync),
    .hsync(vga_hsync),
    .vsync(vsync),
    .vsync(vga_vsync),
    .r(r[2:0]),
    .r(vga_r[2:0]),
    .g(g[2:0]),
    .g(vga_g[2:0]),
    .b(b[2:0])
    .b(vga_b[2:0])
  );
  );
 
 
  kbd kbd1(
  kbd kbd1(
    .ps2_clk(ps2_clk),
    .ps2_clk(ps2_clk),
    .ps2_data(ps2_data),
    .ps2_data(ps2_data),

powered by: WebSVN 2.1.0

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