ModelSim is a popular simulator and debugging environment for VHDL, Verilog and SystemC. It is used in electronic design automation for development and verification of electronic (mainly digital) modules and systems for implementation on field-programmable gate arrays or integrated circuits.
0
votes
0answers
4 views
post gate level simulation in modelsim
I'm trying to make a post gate level simulation for a pipelined processor.
I have the net list in vhdl format and I need now to simulate it again to be sure the functionality is right after the ...
1
vote
1answer
22 views
ModelSim VHDL real simulation time estimation
sirs
I have a problem to resolve urgently. That is I want to get the VHDL simulation time of a model with a testbench. I work in ModelSim and know that the profiler of ModelSim supports performance ...
1
vote
3answers
63 views
What is the difference between Verilog ! and ~?
So it ended up that the bug that had kept me on for days, was a section of code that should have evaluated to False evaluating to True. My initial code went something like:
if(~x && ~y) ...
1
vote
2answers
64 views
Power function in vhdl
I want to make power function using vhdl where the power is floating number and the number is integer (will be always "2").
2^ some floating number.
I use ieee library and (fixed_float_types.all, ...
0
votes
0answers
26 views
VHDL assert: set category for modelsim message viewer
When I write assertions in vhdl, they are displayd in ModelSim in the message viewer with the category "Misc".
Is there a way to set the category of the assertion, so they are sorted as seen in the ...
0
votes
1answer
55 views
“EOF” : syntax error at line 2
I'm trying to write a simple vhdl code. When I run this code in quartus 2 there is no problem. However, when I run on modelsim, there is an error at line 2, that is error at "use ...
1
vote
2answers
161 views
8 bit ALU for microprocessor
I have a project where i am supposed to develop a RISC microprocessor . this involves creating an ALU in behavioral model . however there seems to be problems/errors/warnings while simulating the ...
0
votes
1answer
61 views
Modelsim not recognizing an architecture including “case…when”
I'm pretty new to Modelsim, and i keep getting this "error" from it. Basically i coded a counter with vhdl:
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use ...
1
vote
1answer
57 views
VHDL RAM port map
I have a ram entity and I want to access it from 2 different other entities A and B.
I make entity port map inside both A and B, but when I start simulation on modelsim I get two rams one for entity A ...
-1
votes
3answers
98 views
My Verilog behavioral code getting simulated properly but not working as expected on FPGA
I wrote a behavioral program for booth multiplier(radix 2) using state machine concept,am getting the the results properly during the program simulation using modelsim, but when i port it to ...
0
votes
1answer
78 views
VHDL infinite loop
I'm writing a small piece of code to take a 32 bit input and output 2 bits at a time. I believe I'm having infinite loop problems from the while loop, based on simulation attempts. Everything looks ...
0
votes
0answers
93 views
I'd like to read memory combinationally
I'd like to read memory combinationally using the enable input MemRead.
Also the input i_data is written into memory on rising clock edge.
But it does not work. Am i using always statements ...
-1
votes
2answers
85 views
Modelsim support for SV
I'm currently using modelsim SE 5.8e. It doesn't support SystemVerilog. I need to use SystemVerilog for design and validation of my project. Any idea which version of Modelsim supports both design and ...
1
vote
3answers
122 views
Is a <= a + 1 a good practice in VHDL?
If I write the statement to assign a to be a+1 in a VHDL process, is it a good practice?
I am confused about this because the simulator works fine, but when I try to implement it in FPGA the ...
0
votes
1answer
73 views
If there exists two component of same name, one in package and other in architecture, which one is given priority?
I have a VHDL test file a.vhd.
cat a.vhd
package pak is
component b is -- 1st definition of component b.
end component
end pak;
use work.pak.all; -- 1st definition ...
-1
votes
2answers
171 views
Counter With Frequency divider is not incrementing
The following code is written for an asynchronous counter. The program compiles fine but the counter value doesn't increment after 1. What am I doing wrong?
Here is the code:
//TOP
module ...
0
votes
1answer
47 views
Is it possible to create an IP address radix in modelsim?
Is there anyway to make ip address words display in the decimal dotted format in the waves window?
0
votes
1answer
130 views
Get memory dump in ModelSim (periodical)
How can I get memory dump in ModelSim on a regular basis?
I know how to export memory data. Is there a way to write in the .do file a command to export the memory data every 1000 ns or every x ...
0
votes
2answers
107 views
Can't perform logic operations on unsigned in VHDL?
I've a problem in performing logic operations on unsigned:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
with sel select
s_1<=a+b when "000",
a+((not b)+1) when ...
1
vote
2answers
112 views
VHDL wait on multiple signal
signal a:bit:='1'; signal b:bit:='0'; signal c:bit:='0';
begin
process
variable d:bit:='0';
begin
if (a='1')or(b='0') then a <= inertial not d after 1ns;
else a<=inertial not c ...
2
votes
0answers
110 views
Scons for FPGA? [closed]
Is there somebody who has used 'Scons' as a replacement for 'make' for quiet large FPGA projects?
Did it ran out-of-the-box or is there still some hacking to be done for the VHDL or Verilog language? ...
0
votes
1answer
207 views
ModelSim - Unable To Simulate Button Presses
I want to use four push buttons as inputs and three seven-segment LED displays as outputs. Two push buttons should step up and down through the sixteen RAM locations; the other two should increment ...
0
votes
1answer
132 views
ModelSim - Simulating Button Presses
I want to use four push buttons as inputs and three seven-segment LED displays as outputs. Two push buttons should step up and down through the sixteen RAM locations; the other two should increment ...
0
votes
1answer
458 views
VHDL/ModelSim - Could Not Find Entity
I am trying to simulate my VHDL file, but am running into the following error:
# ** Error: (vcom-11) Could not find work.lab1.
#
# ** Error: (vcom-1195) Cannot find expanded name "work.lab1".
#
# ...
3
votes
2answers
606 views
How can I read binary data in VHDL/modelsim whithout using special binary formats
Some background:
I am writing a VHDL test bench for a ethernet MAC. The testbench consists of a package and an combined entity + architecture file. I want to read the ethernet frames that the ...
0
votes
2answers
399 views
macros defined in verilog file but error shows undifined macros in modelsim
I have defined the macros of all my verilog files in one verilog file, say FabScalarParam.v
and I compile the FabScalarParam.v first in the system.do file then compile other verilog files.
But when I ...
0
votes
1answer
77 views
how to do a left shift in Modelsim in order to built a booth multiplier
I am writing a code for Booth Multiplier in Modelsim. Presently, I am implementing my code in a for loop. In the for loop there are if..else condition that are checking 2 bits at a time of the ...
3
votes
2answers
420 views
Types unmatch VHDL code at Simulation on Modelsim, inspite of thorough check
I am requesting some help because I am completly stuck in my VHDL project, consisting in implementing a cartesian to polar convertor on Nios II. All of my VHD files do compile without error, but when ...
-1
votes
2answers
891 views
Generate random number - seed changes only once
I generate a number in verilog between 0 to 10000 inside a loop like this:
wire rand;
integer i, seed;
initial
begin
i=1;
seed=0;
while (i<10)
begin
force ...
1
vote
1answer
77 views
How to manage uninitialized input signals
I would like to know your opinion on how to test and manage input signals of a component that are 'U', 'X', '-', ...
For example, if I want the output to be 'X' for all non-valid inputs, where at ...
2
votes
2answers
103 views
How to represent array literals in VHDL?
I have the following type declarations:
type cachesubset is record
tag : std_logic_vector(3 downto 0);
word0 : w32;
word1 : ...
0
votes
3answers
148 views
zero flag in verilog problems
I am attempting to build a 32 bit ALU in verilog and I've only done a small bit of behavioral verilog before, so I'm having some difficulty with this code:
module ZERO_FLAG(flag, control, inputA, ...
0
votes
2answers
705 views
How to add all Modelsim waveform?
I'm currently working with a big project with many module and sub-module inside. Is it possible (GUI or tcl scripts) to add all wave and group it in tree like module-tree?
For example: module A ...
2
votes
1answer
163 views
Conversion function “To_bit” must have exactly one formal parameter
I am getting above error while running modelsim on a VHDL Testcase and I am unable to understand why is it an error.
The Testcase:
LIBRARY IEEE;
Use ieee.std_logic_1164.all;
entity a is
port (in11 ...
0
votes
1answer
116 views
Is it possible to write verification procedures on simulations in ModelSim?
I am using ModelSim in order to design and simulate CPU architectures. For those like me who know about this, you are also probably aware that it is really difficult to verify simulation data when ...
0
votes
1answer
182 views
ModelSim PE Student Edition 10.1c (STD_LOGIC error)
I am a beginner user in ModelSim. The software version is in the title of the question.
I am trying to use STD_LOGIC in my vhdl code. It will not compile because the STD_LOGIC I am trying to use in ...
6
votes
1answer
233 views
Is there a way to toggle leaf names in ModelSim through the TCL API?
I am looking for a way to toggle leaf names of the nets in ModelSim view, in GUI mode. In other words, an equivalent of pressing "Toggle leaf names <-> full names" button:
I am aware of the way ...
0
votes
0answers
37 views
Design Optimization dialog in Modelsim
The OK button is always disabled, like here, in Modelsim 6.6d and Questasim 6.6.d. Why do they provide the option selection, which can never be applied?
2
votes
2answers
332 views
Tcl binary loop. Binary increment
I am trying to write a tcl script for my decoder module (verilog in modelsim)
I need to loop the 'din' input value from from 000 to 111
Thats what i've come up with by now.
vsim work.decode_shift
add ...
0
votes
1answer
1k views
Verilog I/O reading a character
I seem to have some issues anytime I try anything with I/O for verilog. Modelsim either throws function not supported for certain functions or does nothing at all. I simply need to read a file ...
0
votes
2answers
574 views
Creating an array in Verilog using ModelSim
Sorry, updated the question to make more sense:
I am trying to declare a 1MB memory model using an array in Verilog in ModelSim using the code below. I also need to have the address 0x80020000 within ...
1
vote
1answer
336 views
Verilog Continuous Simulation
Are there special start and end keywords in verilog that will allow a simulation to continue running until an end keyword is met? I understand this would not be synthesizable; however, I only wish to ...
0
votes
3answers
660 views
Is there a better way to re-write a BCD_counter in VHDL code with less “if-statement”?
I am just beginning to learn VHDL in modelsim, so i apologize in advance if what I'm doing seems really noob.
Basically what i am trying to create is a synthesizable VHDL code for a one-digit up/down ...
1
vote
1answer
461 views
ModelSim Message Viewer Empty
I'm currently using Modelsim 10.1 alongside ISE 13.4 and run a very simple test bench. All code is VHDL.
I ran into trouble using VHDL's assert statement the other day: Errors and warnings are output ...
2
votes
1answer
243 views
Modelsim and GHDL cannot dump vhdl user-defined signal types into vcd?
I'm trying to dump internal signals from a simulation executed either by modelsim or ghdl. Everything works fine using:
For modelsim, add vhdl sources, and compile all then:
vsim -novopt ...
0
votes
1answer
180 views
Booth encode not working, simulation included
I am writing a Booth encode for array multiplier,
this is one of the module:
module add_input (M,pos,neg,C);
parameter n=8;
input [n-1:0]M;
input pos,neg;
output [2*n-1:0]C;
reg [2*n-1:0]C;
...
0
votes
4answers
1k views
Debugging Iteration Limit error in VHDL Modelsim
I'm writing vhdl code for a d-flip-flop on modelsim and i get an error when i try to simulate it: Error: (vsim-3601) Iteration limit reached at time 400 ps.
I'm not sure what it means, but I've ...
1
vote
0answers
155 views
synopsys tetramax strange error in parcing vectors from VCD
I am a Tetramax Newby and i am trying to get a mesure of fault coverage loading functional test vector generated by modelsim.
I generate the modelsim test vector following this procedure:
vsim ...
1
vote
1answer
33 views
How to do the same thing as the “compile all” button in Modelsim
In Modelsim there is a "compile all" button that compiles all the files in the project so that they can be simulated. But when the button is pressed it doesn't show what those commands are?
What are ...
4
votes
1answer
556 views
VHDL test results into jUnit (or other Jenkins-recognized) format
I'm setting up automated regression testing for an FPGA project, almost exactly as described here:
Continuous integration of complex reconfigurable systems
Now I want to get test results (from ...
