关于ip内核的modelsim仿真遇到问题
时间:10-02
整理:3721RD
点击:
我在使用ISE软件里面cordic算法ip核,想产生一个正弦波。在modelsim仿真波形时,仿真结果如下图1,
我想找到波形链接的点,我的tb程序里面是
module cordic_tb;
// Inputs
reg clk;
reg [15:0] phase_in;
// Outputs
wire rdy;
wire [15:0] x_out;
wire [15:0] y_out;
wire [15:0] phase_out;
wire [15:0] cnt_out;
reg [15:0] cnt;
// assign phase_out = phase_in;
// assign cnt_out = cnt;
// Instantiate the Unit Under Test (UUT)
cordic uut (
.clk(clk),
.rdy(rdy),
.x_out(x_out),
.y_out(y_out),
.phase_in(phase_in)
);
但是在添加波形结束后只有x_out 和y_out,我想看每个x_out对应的phasein和clk都看不到,不知道是哪里原因。
PS:在仿真时我添加了unisims_ver、simprims_ver、xilinxcorelib_ver
我想找到波形链接的点,我的tb程序里面是
module cordic_tb;
// Inputs
reg clk;
reg [15:0] phase_in;
// Outputs
wire rdy;
wire [15:0] x_out;
wire [15:0] y_out;
wire [15:0] phase_out;
wire [15:0] cnt_out;
reg [15:0] cnt;
// assign phase_out = phase_in;
// assign cnt_out = cnt;
// Instantiate the Unit Under Test (UUT)
cordic uut (
.clk(clk),
.rdy(rdy),
.x_out(x_out),
.y_out(y_out),
.phase_in(phase_in)
);
但是在添加波形结束后只有x_out 和y_out,我想看每个x_out对应的phasein和clk都看不到,不知道是哪里原因。
PS:在仿真时我添加了unisims_ver、simprims_ver、xilinxcorelib_ver