Forum Discussion
4 Replies
- Altera_Forum
Honored Contributor
why not post the verilog file here...
- Altera_Forum
Honored Contributor
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 - Altera_Forum
Honored Contributor
have you created a project?
- Altera_Forum
Honored Contributor
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