Xilinx IP Core problem -- DDS/NCO

Status
Not open for further replies.

angilberto

Newbie
Joined
Jun 11, 2004
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
11
dds xilinx

I'm able to "generate" the core (dds and/or nco) but when I instantiate it, it seems to be not connected.
I mean, if I check the schematic view everything seems to be ok.
I am able to run the simulation but the output of "my" dds/nco is always ZERO!

I cant see the error on my code (yeah, it probably is obvious...)

Thanks

Angilberto.
------------
thats my code:

Code:
// The following must be inserted into your Verilog file for this
// core to be instantiated. Change the instance name and port connections
// (in parentheses) to your own signal names.
 
//dds YourInstanceName (
//    .CLK(CLK),
//    .SINE(SINE));


`timescale 1ns / 1ps

module ddsdac(clk, dac);
input clk;
output dac;

reg [5:0] dac;
wire [5:0] sine;

dds dds1 (
    .CLK(clk),
    .SINE(sine));

always @(posedge clk) 
	//assign dac = sine;
	  dac <= sine;
endmodule
//

A tiny little bit of some warning messages:

WARNING:Simulator:12 - Port CLK of module C_MUX_BIT_V7_0 in instance
/ddsdac/dds1/BU257/MSBmux/ is left unconnected....
...
...
 

nco ip core

I am also facing the same problem...
i will inimate you if i found answer for this

Added after 21 seconds:

I am also facing the same problem...
i will intimate you if i found answer for this
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…