版主: 51FPGA |
309075576
![]()
最后登陆时间:2012-05-15 14:49:44 |
关于ISE中调用IP核DDS的程序,一直没有成功,不知道问题出在哪,想实现输出cos波形,哪位大神能给小弟详细的调用程序,这个程序例化啥的应该没有问题,但是仿真的时候一直没结果,也没错误,什么都不出,不知道什么问题,求指导
module dds(
DATA,
A,
CLK,
SINE,
COSINE
);
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(),
.data(data),
.cosine(cosine),
.sine(sine));
endmodule
关键词:新手 求教 关于 调用 实现 形的 问题 |
此贴由309075576于2012-04-17 22:51:23最后编辑
|
|
共1条 1/1 1 |