Tagged Questions
VHDL (VHSIC hardware description language) is a hardware description language used in electronic design automation to describe digital systems such as field-programmable gate arrays and integrated circuits.
18
votes
8answers
2k views
What are the best practices for Hardware Description Languages (Verilog, VHDL etc.)
What best practices should be observed when implementing HDL code?
What are the commonalities and differences when compared to more common software development fields?
12
votes
6answers
2k views
Microcontroller + Verilog/VHDL simulator?
Over the years I've worked on a number of microcontroller-based projects; mostly with Microchip's PICs. I've used various microcontroller simulators, and while they can be very helpful at times, I ...
10
votes
10answers
3k views
Professional VHDL IDE?
Is there a good IDE to work with VHDL projects ?
Or are most of the professionals working with emacs/vim/notepad++ ?
10
votes
7answers
945 views
Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL
I have looked on the web and the discussions/examples appear to be for traditional software development. Since Verilog and VHDL (used for chip design, e.g. FPGAs and ASICs) are similar to software ...
9
votes
7answers
734 views
VHDL/Verilog related programming forums?
Hardware design with VHDL or Verilog is more like programming nowadays. However, I see SO members are not so actively talking about VHDL/Verilog programming.
Is there any forum dealing with hardware ...
8
votes
9answers
1k views
Can anyone recommend a good resource for learning VHDL?
Can anyone recommend a good book for learning VHDL? Or failing that, any good resource?
6
votes
2answers
408 views
Ideas for a flexible/generic decoder in VHDL
I want to create an address Decoder that is flexible enough for me to use when changing the number of bits of the selector and of the decoded output signals.
So, instead of having a static (fixed ...
6
votes
1answer
2k views
VHDL Case/When: multiple cases, single clause
Inside a process I have something like this:
CASE res IS
WHEN "00" => Y <= A;
WHEN "01" => Y <= A;
WHEN "10" => Y <= B;
WHEN "11" => Y <= C;
WHEN OTHERS => Y ...
6
votes
4answers
628 views
Programming VHDL on Linux?
Anyone knows good enviroment to program VHDL and simulate it (don't matter Xilinx or Altera) using Linux?
Thanks
Br
6
votes
4answers
907 views
Better ways to implement a modulo operation (algorithm question)
I've been trying to implement a modular exponentiator recently. I'm writing the code in VHDL, but I'm looking for advice of a more algorithmic nature. The main component of the modular exponentiator ...
6
votes
5answers
756 views
How to share register and bit field definitions between a device driver and the FPGA it controls
Are there any good, existing software tools available to assist in generating C header files with appropriate #defines for register offsets as well as bit definitions from VHDL? If any such tools do ...
6
votes
7answers
2k views
Finding the next in round-robin scheduling by bit twiddling
Consider the following problem. You have a bit-string that represents the current scheduled slave in one-hot encoding. For example, "00000100" (with the leftmost bit being #7 and rightmost #0) means ...
5
votes
3answers
89 views
Does the synthesizer care about one or two processes?
There are two popular ways of coding a state machine in VHDL: one process or two processes. There are rumors (and it is taught in some colleges) that two processes might result in better hardware. ...
5
votes
3answers
156 views
Better to have decrementing loops? [closed]
I remember years ago hearing that it is more efficient to have loops decrementing instead of incrementing especially when programming microprocessors.
Is this true, and if so, what are the reasons?
5
votes
1answer
261 views
How to stream a small video in spartan 3e fpga?
By Using cosmiac tutorial 13 http://www.cosmiac.org/tutorial_13.html and ISE 10.1 the pdf file shows how to generate an image and you can download the project by clicking the first .zip file. At the ...
5
votes
2answers
359 views
When should I use std_logic_vector and when should I use other data types?
I'm new to VHDL and am having trouble figuring out which data types are appropriate to use where. If I understand correctly, for synthesis, all top level entity ports should be declared either ...
5
votes
3answers
92 views
Purpose to providing more than one architecture?
I'm in the process of learning VHDL and I'm trying just learning from examples, syntax guides, and experiments.
One thing I don't quite understand is why you'd ever want to provide more than one ...
5
votes
3answers
204 views
Is there a VHDL equivalent to Verilog's @(*), i.e., automatic process sensitivity list
It is easy to update a combinatorial process and forget to update the sensitivity list. In Verilog the @(*) was introduced to say the sensitivity list is what is used in this process. Is there an ...
5
votes
2answers
266 views
Tool to find commented out VHDL code
This question asks the general question. I'm asking about VHDL in particular, since the tools that question's answer mentions are for Java and PL/SQL. It doesn't need to be perfect, some manual ...
5
votes
1answer
229 views
Where can I find a definitive list of the ModelSim error codes?
I am running some VHDL through ModelSim. Each error and warning has its own error code (like this: (vcom-1292) Slice range direction "downto" specified in slice with prefix of unknown direction. This ...
5
votes
5answers
987 views
Creating a VHDL backend for LLVM?
LLVM is very modular and allows you to fairly easily define new backends. However most of the documentation/tutorials on creating an LLVM backend focus on adding a new processor instruction set and ...
5
votes
3answers
793 views
'if' vs 'when' for making multiplexer
i have been told to use 'when' statement to make multiplexer but not use 'if' statement as it will cause timing errors...
i don't understand this ...
so what is the difference between 'if' and 'when' ...
5
votes
4answers
2k views
Program for drawing VHDL block diagrams?
Is there any free program out there that can parse a collection of VHDL files and build a block diagram from them?
Edit
I'm looking more for a program that will build a block diagram image to go ...
5
votes
6answers
1k views
Hidden Features of VHDL
The original question was:
What are some really useful but esoteric language features in VHDL that you've actually been able to employ to do useful work?
The original question was deleted, and I was ...
5
votes
3answers
800 views
Can you recommend a website for vhdl source codes?
I want a VHDL source codes website that provide a ready to use component source code.
for example: full adder vhdl source code.
4
votes
3answers
381 views
Implementing a FSM in VHDL
Just wondering if I'm implementing a finite state machine in VHDL whether or not I need to state what all of the outputs are in every possible state? Even if I know that some outputs won't change from ...
4
votes
3answers
485 views
Does anybody have quantitative data on VHDL versus Verilog use?
VHDL and Verilog serve the same purpose, but most engineers favor one of both languages. I want to find out who favors which language.
There are dozens of myths and common wisdoms about the ...
4
votes
1answer
104 views
Array indexes to wide for array
I have the following problem when accessing arrays in VHDL:
Say I have an array which is not of size 2^n, for example of size 6.
Then, if I want to access this array using an index of width 3 bits ...
4
votes
2answers
74 views
Starting work on a Pre-existing Project
So this is more of a generic question. I seem to keep finding myself being put on larger and larger projects. Recently I have been assigned to a very large project written in C and VHDL. The goal ...
4
votes
1answer
657 views
Case statements in VHDL
When programming in VHDL, can you use a variable in a case statement? This variable will modified by one of the cases
i.e.
case task is
when 1 =>
when 2 =>
when number =>
is this OK?
4
votes
3answers
1k views
Hardware representation for arrays in VHDL
Using VHDL i want to have a some registers that store 16 bit in each one.
So i found that VHDL have a built in array,and i want to use it to store 16 bit in each element in iy so i want to know if ...
4
votes
4answers
200 views
Building a VHDL Clone
I am planning to design a hardware simulation language like VHDL for my final year project. How should I go about it ?
Any help would be greatly appreciated.
4
votes
4answers
496 views
Good sites/blogs for FPGA development projects
I'm looking for interesting online resources on FPGA development - sites, blogs, that sort of thing. What I'm after is examples of fun (and hopefully not too expensive) projects that one can try out ...
4
votes
10answers
612 views
Where should I begin with HDLs?
I am a self-taught embedded developer. I mostly use AVRs programmed in C and ASM, but I have dabbled with other systems. I am looking to move onto more complex devices like CPLDs and FPGAs, but I have ...
3
votes
4answers
34 views
when a signal must be insert in the sensitivity list of a process
I am confused about when a signal declared in a architecture must be insert into the sensitivity list of a process.there is a general law who can be followed in any situation.I have really ...
3
votes
2answers
65 views
VHDL: how to detect compiler
I have to load ROM from file. Quartus can use .mif files directly and for the simulator I have written(quick and dirty) .mif file parser with the help of textio. Is there there a way to detect ...
3
votes
1answer
63 views
Regex for VHDL Identifier
I'm trying to parse my VHDL code for some additional checks.
I'm looking for a regular expression that check for corrent identifiers in VHDL. And I'm still fairly new to regex.
it has the following ...
3
votes
2answers
128 views
How to determine how many slices a design uses
I've implemented a 16-bit ALU and a register file in VHDL using the Xilinx ISE. I've been asked how many slices my design uses, and I have no idea how to go about answering that question. I'm not ...
3
votes
5answers
306 views
downto vs. to in VHDL
I'm not sure I understand the difference between 'downto' vs. 'to' in vhdl.
I've seen some online explanations, but I still don't think I understand. Can anyone lay it out for me?
3
votes
1answer
241 views
VCD dump for vhdl simulation via modelsim. HOWTO?
It's the first time i try to generate a VCD and i am getting some troubles.
I have a testbench called bench_minimips.vhdl that contain the entity sim_minimips.
I want simulate it and get a VCD out of ...
3
votes
3answers
107 views
Is initialization necessary?
For vhdl, Is initialization necessary when crating a signal or vector?
If one forget to initial signal or integer value what happened ?
3
votes
2answers
56 views
necessity of 'event
I have used below statement, frequently. However, I wonder
if ( clock'event and clock = '1' ) then
[do something]
we really need to write clock'event in above statement ?
If yes, ...
3
votes
1answer
329 views
Xilinx ISE fails to use std_logic_1164
I have Xilinx ISE 13.1 installed on an ACER laptop with Win7 (64bit).
After installing the software (WebPACK version) I created an empty VHDL module and ran "check syntax". The process failed with ...
3
votes
1answer
567 views
VHDL complement counter issues: converting std_logic to integer
Essentially, my question is: "can this not be done any easier?"; and what 'this' is, follows below (code too):
I wanted to have a sort of a 'complement' counter function, implemented in VHDL, which ...
3
votes
2answers
130 views
VHDL: Code to put a numeric value in a STD_LOGIC_VECTOR variable
I would like to enter a number in a a variable of type STD_LOGIC_VECTOR but I have problems with the compiler.
signal cl_output_ChA : STD_LOGIC_VECTOR (16-1 downto 0);
cl_ouput_ChA <= ...
3
votes
4answers
414 views
Nested if (rising_edge(clk)) statements in VHDL
so I’ve come across some old code that I have to replicate, but it won’t compile with the new Xilinx compiler, so I need to figure out exactly what it does. I have something like this:
if ...
3
votes
2answers
170 views
what's wrong with my VHDL sine function gen?
library IEEE;
use IEEE.MATH_REAL.ALL;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.NUMERIC_STD.ALL;
entity SineGen is
Port (clock : in std_logic;
...
3
votes
1answer
65 views
“Warning C0007 : Architecture has unbound instances” issue!
I have the following source code from the CD attached with "Fundamental of Digital Design" book.
When I tried run the program, it gave me the following error:
Compiling Fig17_13.vhd...
...
3
votes
2answers
226 views
Encoding state machines in VHDL
I'm looking into creating a system in VHDL that filters an image after receiving it through an FTDI usb-to-serial device. As part of this, I believe I've identified the states that my CPLD should be ...
3
votes
2answers
238 views
What are best practices for optimizing pipeline throughput for fpga implementations?
How does one for example make the best use of retiming and/or c-slow to make the most of a given pipeline.
With retiming, some modules get better results by putting the shift registers on the inputs ...