Can anyone recommend a good book for learning VHDL? Or failing that, any good resource?
closed as not constructive by Smi, stigok, Chad, philant, DarkCthulhu Nov 8 '12 at 22:35
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The unfortunate problem with VHDL is that there are loads of outdated, poorly styled and outright wrong resources out there; both electronic and in print. Part of the art of mastering VHDL is knowing how to filter these out. The following is the filtering I did in my previous life as a hardware designer. I hope it is helpful to you. These are the things you want to read, or own, or download:
|
||||
|
A great textbook to start out with is: Fundamentals of Digital Logic with VHDL Design I remember starting out with this to get a quick overview. |
|||||||||
|
|
I found the Low Carb VHDL Tutorial to be excellent when I was learning VHDL. Now even more since the author of Low-Carb VHDL Tutorial has turned it into an open-source book titled Free Range VHDL. |
||||
|
|
|
I like the book called "Circuit Design with VHDL", from Volnei A. Pedroni. It focuses on synthesizable VHDL, that is what you will need to code for real chips, not only for simulation. |
||||
|
|
When learning any sort of HDL (Verilog, VHDL...) it is important to keep one thing in mind. It is not software programming and things work in parallel. That being said, I find that the best way to learn any HDL is to learn how to think in hardware and describe the hardware (that's why it is called a hardware description language). So far, I have rarely seen books that show you how your HDL gets translated into hardware. I've read through one when I was at Synopsys (pages filled with code and schematics) but it was an internal publication. However, even lacking this book, you can still see how your code gets turned into hardware by running it through synthesis on free-software. The reason that I wish to stress this is because there are many ways to solve a problem. You will only be able to write code that solves it efficiently, from a gate count and timing stand point, if you understand how it gets translated into underlying hardware. Good luck! |
||||
|
|
|
||||
|
|
|
Be carefull though things are not always parallel. Sequential assignments are different than combinational assignments. |
||||
|
|
|
I'm not sure what your background or needs are, but Digital Design and Computer Architecture, by David Harris and Sarah Harris, was a very useful introduction for me. It's not VHDL specific (Verilog and VHDL examples are presented side by side) or even HDL-heavy – as the title would suggest, it's more of an introduction to digital design in general. But for me it has been a great approach, presenting the code along with a grounding in its application and theoretical context. |
||||
|
|