解决方案
This is a known issue with the design that only occurs when the Debug feature is enabled.To work around this, locate the following snippet of code in the example_top.v module:
generate
if (DEBUG_PORT=="ON") begin: CHIPSCOPE_INST
assign ddr3_cs0_clk = clk;
assign ddr3_cs4_clk = clk;
assign vio_modify_enable = ddr3_vio3_sync_out[36];
assign vio_data_mode_value = ddr3_vio3_sync_out[40:37];
assign vio_addr_mode_value = ddr3_vio3_sync_out[43:41];
assign vio_instr_mode_value = ddr3_vio3_sync_out[47:44];
assign vio_bl_mode_value = ddr3_vio3_sync_out[49:48];
assign vio_fixed_bl_value = ddr3_vio3_sync_out[57:50];
assign vio_data_mask_gen = ddr3_vio3_sync_out[58];
assign vio_pause_traffic = ddr3_vio3_sync_out[59];
assign vio_fixed_instr_value = ddr3_vio3_sync_out[62:60];
assign dbg_clear_error = ddr3_vio3_sync_out[63];
assign ddr3_vio1_async_in[200] = tg_compare_error;
Traffic is not generated because these values are undefined.To enable traffic generation, hard code the following ports:
.vio_pause_traffic (1'b0),
.vio_bl_mode_value (2'b10),
.vio_fixed_bl_mode (8'd64),
.vio_fixed_instr_value (3'b001),
.vio_data_mask_gen (1'b01),