Changeset 108


Ignore:
Timestamp:
Jan 17, 2011, 6:18:33 PM (14 years ago)
Author:
demin
Message:

few minor fixes

Location:
sandbox/MultiChannelUSB
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sandbox/MultiChannelUSB/Paella.qsf

    r107 r108  
    5757set_global_assignment -name VERILOG_FILE sys_pll.v
    5858set_global_assignment -name VERILOG_FILE control.v
    59 set_global_assignment -name VERILOG_FILE uwt_bior31.v
    6059set_global_assignment -name VERILOG_FILE analyser.v
    6160set_global_assignment -name VERILOG_FILE amplitude.v
     
    7473set_global_assignment -name USE_TIMEQUEST_TIMING_ANALYZER OFF
    7574set_global_assignment -name ENABLE_CLOCK_LATENCY ON
    76 set_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top
    7775set_global_assignment -name PARTITION_NETLIST_TYPE SOURCE -section_id Top
    7876set_global_assignment -name PARTITION_COLOR 16764057 -section_id Top
     
    329327set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to RAM_DQB[6]
    330328set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to RAM_DQB[7]
     329
     330set_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top
  • sandbox/MultiChannelUSB/Paella.v

    r107 r108  
    282282                .bus_busy(bus_busy[1]));
    283283
    284         cic1 #(.size(3), .width(12)) cic3_unit (
     284        cic_filter #(.size(3), .width(12)) cic_filter_unit (
    285285                .clock(sys_clock),
    286286                .frame(sys_frame),
     
    297297                        assign sys_data[j] = (cfg_bits[1][4*j]) ? (adc_data[j] ^ 12'hfff) : (adc_data[j]);
    298298
    299                         uwt_bior31 #(.L(1)) uwt_1_unit (
    300                                 .clock(sys_clock),
    301                                 .frame(sys_frame),
    302                                 .reset(1'b0),
    303                                 .x({20'h00000, sys_data[j]}),
    304                                 .d(uwt_d1[j]),
    305                                 .a(uwt_a1[j]),
    306                                 .flag(uwt_flag1[j]));
    307                
    308                         uwt_bior31 #(.L(2)) uwt_2_unit (
    309                                 .clock(sys_clock),
    310                                 .frame(sys_frame),
    311                                 .reset(1'b0),
    312                                 .x(uwt_a1[j]),
    313                                 .d(uwt_d2[j]),
    314                                 .a(uwt_a2[j]),
    315                                 .flag(uwt_flag2[j]));
    316                
    317                         uwt_bior31 #(.L(3)) uwt_3_unit (
    318                                 .clock(sys_clock),
    319                                 .frame(sys_frame),
    320                                 .reset(1'b0),
    321                                 .x(uwt_a2[j]),
    322                                 .d(uwt_d3[j]),
    323                                 .a(uwt_a3[j]),
    324                                 .flag(uwt_flag3[j]));
    325299       
    326300                        analyser analyser_unit (
  • sandbox/MultiChannelUSB/cic_filter.v

    r107 r108  
    1 module cic1
     1module cic_filter
    22        #(
    33                parameter       size    =       3, // number of channels
  • sandbox/MultiChannelUSB/test.v

    r107 r108  
    2424                .clock_enable_input_a("BYPASS"),
    2525                .clock_enable_output_a("BYPASS"),
    26                 .init_file("test_mwd.mif"),
     26                .init_file("test.mif"),
    2727                .intended_device_family("Cyclone III"),
    2828                .lpm_hint("ENABLE_RUNTIME_MOD=NO"),
Note: See TracChangeset for help on using the changeset viewer.