xtcx
Advanced Member level 1
- Joined
- Dec 22, 2007
- Messages
- 493
- Helped
- 65
- Reputation
- 130
- Reaction score
- 58
- Trophy points
- 1,308
- Location
- Bangalore, India
- Activity points
- 5,003
Hello guys!, I'm using Spartan3 2000 k FPGA from Xilinx and using 8.2i ISE version. Well!. comming to the point. I added some enumerated data type with attribute property like this
------------------------------------
Signal timer : integer :=0;
TYPE timer is (start, timeout, stop);
signal radio_timer : stop;
Attribute init : string;
Attribute init of radio_timer : signal is "stop";
Attribute init of timer : signal is "1";
.
.
.
.
-------------------------------------------
Next to this, I added a small counter logic which resets the unit if the input has not arrived within the specified time....Now when I ran synthesis, it showed "Excess Device utilzation" for component
TBuf : 1 Out of 0
Now this is the first time I'm getting this error, and please tell me what this Tbuf is?. Is it Tristate Buffer?...And I wonder where am I using this Tbuf in my coding?. Those are the only signals I recently defined which caused the error!..Also it says (1/0) which means there is no Tbuf in Spartan3 or what?...It'd be nice of you guys if you could clarify what this Tbuf is and why Spartan 3 doesnt have such...!
Thanks in advance friends!......
------------------------------------
Signal timer : integer :=0;
TYPE timer is (start, timeout, stop);
signal radio_timer : stop;
Attribute init : string;
Attribute init of radio_timer : signal is "stop";
Attribute init of timer : signal is "1";
.
.
.
.
-------------------------------------------
Next to this, I added a small counter logic which resets the unit if the input has not arrived within the specified time....Now when I ran synthesis, it showed "Excess Device utilzation" for component
TBuf : 1 Out of 0
Now this is the first time I'm getting this error, and please tell me what this Tbuf is?. Is it Tristate Buffer?...And I wonder where am I using this Tbuf in my coding?. Those are the only signals I recently defined which caused the error!..Also it says (1/0) which means there is no Tbuf in Spartan3 or what?...It'd be nice of you guys if you could clarify what this Tbuf is and why Spartan 3 doesnt have such...!
Thanks in advance friends!......