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.

Fixed point signals not shown on waveform window

Status
Not open for further replies.

SharpWeapon

Member level 5
Joined
Mar 18, 2014
Messages
89
Helped
0
Reputation
0
Reaction score
0
Trophy points
6
Activity points
705
Hello,

I am working on fixed point signals using fixed_pkg_c.vhdl and fixed_float_types_c.vhdl packages. But I am not able to see the signals on the waveform window, how can I debug my fixed point signals/variables.

NB: I/O ports with fixed point type are not shown as well, I suppose at least this should have been on the waveform. :???:

Thanks!
 
Last edited:

Have you tried to add them? Modelsim works fine with them?

What version of modelsim are you using? You dont need fixed_pkg_c.vhd with newer versions (its included as part of the 2008 standard in the IEEE package).
 

Thanks TrickyDicky for the reply. I cant add them, they are not shown in the 'Object Name' list of the design unit. I am using ISim webpack version. I had an error without the packages added.
 

For anyone who might have same problem and/or future visitors: The problem was I just did a lazy typing mistake in my fixed point signal declaration. It was supposed to be:
Code:
signal <name>:sfixed(a downto -b);
what i have done was:
Code:
signal <name>:sfixed(a to -b);

Lazy indeed! :lol:
Well I paid the price, spent half a day trying to figure out what the heck was wrong with ISim.

Peace people!
 

Yup. Making them a to -b makes it a null array, and therefore has a length of 0
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top