关于ISE调用IP核的问题

2019-03-25 09:22发布

小弟最近才学FPGA,用的是ISE9.1,想用DDS生成SIN或者COS信号,调用程序如下,行为仿真没有结果也不报错,仿真框都不弹出来,不知道错在哪 求指导啊module dds( DATA, WE, A, CLK, SINE, COSINE ); // synthesis black_box 
input [27 : 0] DATA; input WE; input [4 : 0] A; input CLK; output [9 : 0] SINE; output [9 : 0] COSINE;
ddss dds1( .a(A), // Bus [4 : 0]     .clk(clk),    .we(we),    .data(data), // Bus [27 : 0]     .cosine(cosine), // Bus [5 : 0]     .sine(sine)); // Bus [5 : 0] 

endmodule  此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。