Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Vhdl Spansion flash model compilation problem

Status
Not open for further replies.

robertobuti

Newbie level 3
Joined
Mar 24, 2005
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,306
vitalpathdelay01z

Hi,
i'm trying to use a spansion vhdl model of theri device, but i have an error during compliation with modelsim 5.8
Can some one with experience help to identify this error ?

regards
Roberto
 

how to import fmf library, vhdl

Please write here what compilation error ur are getting???
You have not includede fmf library with ur vhdl model??
 
vhdl flash model

Fine,
sorry for mismatch.... attached the source to create the fmf library.
The error message is :
On line 2972 ...no feasible entries for subprogram 'vitalpathdelay01z'.

i suppose a problem with vital library , but i'm not sure, and i don't know how to fix it.

regards
Roby
 

vhdl spansion

Its not the problem with vital library!!!
By defination IgnoreDefaultDelay and RejectFastPath are constants
in vital procedure VitalPathDelay01Z as given below ....
We can not overwrite them so you comment the lines in ur vhdl
code containing these two variables it eill work..
Hope this helps:)


Code:
PROCEDURE VitalPathDelay01Z (
        SIGNAL   OutSignal          : OUT   std_logic;
        VARIABLE GlitchData         : INOUT VitalGlitchDataType;
        CONSTANT OutSignalName      : IN    string;
        CONSTANT OutTemp            : IN    std_logic;
        CONSTANT Paths              : IN    VitalPathArray01ZType;
        CONSTANT DefaultDelay       : IN    VitalDelayType01Z   := VitalZeroDelay01Z;
        CONSTANT Mode               : IN    VitalGlitchKindType := OnEvent;
        CONSTANT XOn                : IN    BOOLEAN             := TRUE;
        CONSTANT MsgOn              : IN    BOOLEAN             := TRUE;
        CONSTANT MsgSeverity        : IN    SEVERITY_LEVEL      := WARNING;
        CONSTANT OutputMap          : IN    VitalOutputMapType  := VitalDefaultOutputMap;
        CONSTANT NegPreemptOn       : IN    BOOLEAN             := FALSE;  --IR225 3/14/98
        CONSTANT IgnoreDefaultDelay : IN    BOOLEAN             := FALSE;  --IR248 3/14/98 
        CONSTANT RejectFastPath     : IN    BOOLEAN             := FALSE   --IR250
    );
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top