Re: Anybody else get Fatal app. errors during compile?


[ Follow Ups ] [ Post Followup ] [ ECE 532 Discussion Area ] [ FAQ ]

Posted by Lantos on January 30, 1998 at 23:12:29:

In Reply to: Re: Anybody else get Fatal app. errors during compile? posted by Howard Chou on January 25, 1998 at 19:14:51:


: : I was just wondering if anybody else had the compiler
: : die on them with a Fatal app. error "Partitioner at 10%".
: : This pops up on my home machine with the student version
: : any time I want to compile something larger (especially
: : when I am compiling the transmitter top level vhdl file)

: : If you've seen this, and especially found a way
: : around it, let me know.

: I had that problem too when I tried to compile my whole system using
: Max7000, so I select the FLEX10k20 device and I was able to compile it.

: Howard

I managed to get a Fatal app. error by creating a 'STD_LOGIC_VECTOR' type
of signal, and not including the vector's size; ie. I put

SIGNAL blahblah : STD_LOGIC_VECTOR;

and then, I said

blahblah <= "11111111";

which caused MaxPlus2 to give a very descriptive "fatal app error", and then
crash quite gracefully.

the solution is to give blahblah a size:
SIGNAL blahblah : STD_LOGIC_VECTOR(7 DOWNTO 0);

Hope this was your problem...



Follow Ups:


Post a Followup

Name:
E-Mail:

Subject:

Comments:

Optional Link URL:
Link Title:
Optional Image URL:


[ Follow Ups ] [ Post Followup ] [ ECE 532 Discussion Area ] [ FAQ ]