Ignore:
Timestamp:
Jun 26, 2011, 11:06:30 PM (13 years ago)
Author:
demin
Message:

add configuration registers for the clip module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/MultiChannelUSB/configuration.v

    r99 r154  
    44
    55                input   wire                    bus_ssel, bus_wren,
    6                 input   wire    [4:0]   bus_addr,
     6                input   wire    [5:0]   bus_addr,
    77                input   wire    [15:0]  bus_mosi,
    88
     
    1010                output  wire                    bus_busy,
    1111               
    12                 output  wire    [511:0] cfg_bits
     12                output  wire    [1023:0]        cfg_bits
    1313        );
    1414
    15         wire    [31:0]  int_ssel_wire;
     15        wire    [63:0]  int_ssel_wire;
    1616        wire    [15:0]  int_miso_wire;
    1717        reg             [15:0]  int_miso_reg;
    1818
    19         wire    [511:0] int_bits_wire;
     19        wire    [1023:0]        int_bits_wire;
    2020
    2121        integer i;
     
    2323
    2424        generate
    25                 for (j = 0; j < 32; j = j + 1)
     25                for (j = 0; j < 64; j = j + 1)
    2626                begin : BUS_OUTPUT
    2727                        lpm_ff #(
     
    4343
    4444        lpm_mux #(
    45                 .lpm_size(32),
     45                .lpm_size(64),
    4646                .lpm_type("LPM_MUX"),
    4747                .lpm_width(16),
    48                 .lpm_widths(5)) bus_miso_mux_unit (
     48                .lpm_widths(6)) bus_miso_mux_unit (
    4949                .sel(bus_addr),
    5050                .data(int_bits_wire),
     
    5353
    5454        lpm_decode #(
    55                 .lpm_decodes(32),
     55                .lpm_decodes(64),
    5656                .lpm_type("LPM_DECODE"),
    57                 .lpm_width(5)) lpm_decode_unit (
     57                .lpm_width(6)) lpm_decode_unit (
    5858                .data(bus_addr),
    5959                .eq(int_ssel_wire),
Note: See TracChangeset for help on using the changeset viewer.