Altera_Forum
Honored Contributor
9 years agoEPM240T100C5 not work reading data from RAM
Hi can someone help me with reading data from RAM, please
my code is very easy look:
module dds_generator(clk,signal_output);
input wire clk;
output wire signal_output;
reg phase_acumulator;
initial phase_acumulator = 32'd0;
//assign signal_output = phase_acumulator;
ram1_port sin(
.address(phase_acumulator),
.data(),
.outclock(clk),
.we(1'b0),
.q(signal_output));
always@( posedge clk ) begin
phase_acumulator <= phase_acumulator + 32'd85899; //
end
endmodule
compile project without errors but not use any CPLD resources :confused: http://www.alteraforum.com/forum/attachment.php?attachmentid=12567&stc=1 RTL viewer : I thinks this is good http://www.alteraforum.com/forum/attachment.php?attachmentid=12568&stc=1 I dont know why :( thaks for help me