edhunter2003
Technical User
Hi guys,
when I try to do a post-translate simulation of some code of mine, i get the following error
when I try to do a post-translate simulation of some code of mine, i get the following error
Code:
# WARNING[1]: zerorunlength_translate.vhd(3730): No default binding for component: "x_lut2". (No entity named "x_lut2" was found)[\code]
Any idea what the problem could be?
Also, when I synthesise the code, I get the following errors
[code]WARNING:Xst:737 - Found 1-bit latch for signal <rdy_int>.
WARNING:Xst:737 - Found 1-bit latch for signal <dr_int>.[\code]
They seem to be associated with the lines
[code]rdy_int <= '1' when rdy_sig = '1'
else '0' when rst = '1' or countBuf = countOut
else rdy_int;
dr_int <= '1' when dr = '1' or rst = '1'
else '0' when countOut = countBuf
else dr_int;[\code]
Any help would be appreciated.
Thanks
Ed