problem with a library "BEH_INT" in vhdl compiling using modelsim.(image processing)

Status
Not open for further replies.

magnatro

New Member
Hi,
iam trying out a design using modelsim. the code is for edge detection of an image file. the problem is that when i try to compile the code an error pops out saying a library is missing. a library named "BEH_INT"

this is the error from the error window:

this is the code header.

Code:
Code:
 library IEEE;
use IEEE.STD_LOGIC_1164.all;
library BEH_INT;
use BEH_INT.IMAGE_PROCESSING.all;
entity EDGE_DETECTOR is
generic( NUM_ROWS: NATURAL; 
NUM_COLS: NATURAL); 
Port (  CLOCK : in STD_LOGIC; 
EDGE_START : in STD_LOGIC; 
INPUT : in STD_LOGIC;
OUTPUT : inout STD_LOGIC ); 
end EDGE_DETECTOR;
architecture BEHAVIORAL of EDGE_DETECTOR is
type MEMORY_ARRAY is array(1 to 3, 1 to NUM_COLS) of PIXEL
 
Last edited:
I think it seems pretty obvious that you have to find this library file and make sure it's in the proper directory or that you're path statement is set up properly to locate it. If you don't have it there's not much you can do.
 
Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…