Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

Ive defined for my project a Single-Port ROM, using the Block Memory Generator of ISE tools. It appears as part of my project, but i'm having a error message implementing my top module. wich says:

ERROR:HDLParsers:709 - "C:/Users/Neander/Project/SinHandler.vhd" Line 56. memory_sin is not an entity name

Here's my .vhd:

memory: entity work.memory_sin -- BRAM with the sin values 
    port map(
    clka => clk,
    addra => mem_addr,
    douta => dout);
share|improve this question

1 Answer

Where is memory_sin defined?

It looks like you haven't got the file with it in in your projects (or maybe it's too far down the list, so hasn't been analysed by the time you've tried to use it).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.