I am sending you back a zip file called mvb_lib_project.zip.
Extract this file and run the script "
compile.do" in the
Tools-> TCL-> Run Macro option in Modelsim.
you will see that there are two unbound components
data_pe : entity work.edp
port map (
a => data_in,
q => data_r,
clr => reset,
clk => clk
);
-------------------------------------------------------------------------------
-- Positive edge detector for data_in
-------------------------------------------------------------------------------
data_ne : entity work.edn
port map (
a => data_in,
q => data_f,
clr => reset,
clk => clk
);
but this is because you have not provided me the edn and edp files.
If you add this to the
compile.do script but BEFORE the top level file, your project will compile.
Hope this helps