Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
21615 Discussions

unable to create symbol file for current file (Verilog HDL file) in Quartus IIweb13.1

Altera_Forum
Honored Contributor II
2,165 Views

Hi, 

I am unable to create symbol file for current file (Verilog HDL file) in Quartus II web edition 13.1. 

Compilation report shows 'Data not available'. 

plz help me !
0 Kudos
4 Replies
Altera_Forum
Honored Contributor II
1,067 Views

why not post the verilog file here...

0 Kudos
Altera_Forum
Honored Contributor II
1,067 Views

Hi Tricky, 

I am trying to run 'My_first_fpga' tutorial on my cyclone III starter board, verilog code is as below: 

 

// This is an example of a simple 32 bit up-counter called simple_counter.v 

// It has a single clock input and a 32-bit output port 

module simple_counter (input clock , output reg [31:0] counter_out); 

always @ (posedge clock)// on positive clock edge 

begin 

counter_out <=# 1 counter_out + 1;// increment counter 

end 

endmodule// end of module counter
0 Kudos
Altera_Forum
Honored Contributor II
1,067 Views

have you created a project?

0 Kudos
Altera_Forum
Honored Contributor II
1,067 Views

Hi, 

 

I am also doing that tutorial and I have the same problem. I created a project (just as instructed). Chitranshvarun, were you able to resolve this issue? 

Perhaps I should add that I am using this EP4CE6E22C8N FPGA rather than one of the recommended FPGAs... 

 

Thanks in advance, 

Chandran
0 Kudos
Reply