[SOLVED] sparten 3e PROM programming

Status
Not open for further replies.

Gangadhara Reddy

Newbie level 2
Joined
Dec 17, 2013
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
11
hi
i programmed PROM. IN FPGA I used (M0,M1,M2) mode
ISE impact tool displayed PROGRAM SUCCEEDED.
But i am not getting output,
please help me
 

Maybe your code us wrong? Maybe you have no clock? Have you simulated?
 

it is a simple half adder program.
program is like this
half adder

Code Verilog - [expand]
1
2
3
4
5
6
7
8
module add(sum,cout,a,b
    );
     input a,b;
     output sum,cout;
     xor a1(sum,a,b);
     and a2(cout,a,b);
     
endmodule



add.ucf is:

Code Verilog - [expand]
1
2
3
4
NET "a" LOC = L13;
NET "b" LOC = L14;
NET "cout" LOC = E12;
NET "sum" LOC = F12;



what can i do?
 
Last edited by a moderator:

Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…