akhil.592
Newbie level 3
- Joined
- Aug 23, 2014
- Messages
- 4
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 29
I'm generating an cosine wave using DDS (sys_CLK- 200 KHZ | O/p freq - 4KHZ)IP core and i'm port mapping it to the CIC filter (clock- 125MHZ sampling - 200KHZ) the O/p of the cic filter is "XXXXXX"" please help me I've to submit my thesis
if any mistake is done please let me know
if any mistake is done please let me know
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 module DDS_AUG_22(input clk, input clk_125m, inpuk_250m ); wire [5:0] cosine,sine; //DDS wire [19:0] real_part; // CIC wire rdy,nd; wire [15:0] temp, din; assign temp = {cosine,10'b0000}; assign nd = rdy; DDS ip_1( .clk(clk), // input clk .rdy(rdy), // output rdy .cosine(cosine), // output [5 : 0] .sine(sine) // O/P[5:0] ); COMB_FILTER Real ( .din(cosine), // input [15 : 0] din .nd(nd), // input nd .clk(clk_125m), // input clk .dout(real_part), // output [19 : 0] dout .rdy(rdy_1), // output rdy .rfd(rfd) ); // output rfd
Last edited by a moderator: