- Timestamp:
- Jan 17, 2011, 6:18:33 PM (14 years ago)
- Location:
- sandbox/MultiChannelUSB
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sandbox/MultiChannelUSB/Paella.qsf
r107 r108 57 57 set_global_assignment -name VERILOG_FILE sys_pll.v 58 58 set_global_assignment -name VERILOG_FILE control.v 59 set_global_assignment -name VERILOG_FILE uwt_bior31.v60 59 set_global_assignment -name VERILOG_FILE analyser.v 61 60 set_global_assignment -name VERILOG_FILE amplitude.v … … 74 73 set_global_assignment -name USE_TIMEQUEST_TIMING_ANALYZER OFF 75 74 set_global_assignment -name ENABLE_CLOCK_LATENCY ON 76 set_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top77 75 set_global_assignment -name PARTITION_NETLIST_TYPE SOURCE -section_id Top 78 76 set_global_assignment -name PARTITION_COLOR 16764057 -section_id Top … … 329 327 set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to RAM_DQB[6] 330 328 set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to RAM_DQB[7] 329 330 set_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top -
sandbox/MultiChannelUSB/Paella.v
r107 r108 282 282 .bus_busy(bus_busy[1])); 283 283 284 cic 1 #(.size(3), .width(12)) cic3_unit (284 cic_filter #(.size(3), .width(12)) cic_filter_unit ( 285 285 .clock(sys_clock), 286 286 .frame(sys_frame), … … 297 297 assign sys_data[j] = (cfg_bits[1][4*j]) ? (adc_data[j] ^ 12'hfff) : (adc_data[j]); 298 298 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]));325 299 326 300 analyser analyser_unit ( -
sandbox/MultiChannelUSB/cic_filter.v
r107 r108 1 module cic 11 module cic_filter 2 2 #( 3 3 parameter size = 3, // number of channels -
sandbox/MultiChannelUSB/test.v
r107 r108 24 24 .clock_enable_input_a("BYPASS"), 25 25 .clock_enable_output_a("BYPASS"), 26 .init_file("test _mwd.mif"),26 .init_file("test.mif"), 27 27 .intended_device_family("Cyclone III"), 28 28 .lpm_hint("ENABLE_RUNTIME_MOD=NO"),
Note:
See TracChangeset
for help on using the changeset viewer.