Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
1–10 of 13 posts
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#2Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#3 - Verilator (Verilog) -- http://www.veripool.org/wiki/verilator
- Icarus Verilog -- http://iverilog.icarus.com/
- GHDL (VHDL) -- http://home.gna.org/ghdl/
- GTKWave (waveform viewer) -- http://gtkwave.sourceforge.net/
- For people who want to be a bit more cutting edge, there's also Chisel: https://chisel.eecs.berkeley.edu/
If you're an emacs person and using Verilog, I'd also recommend Verilog Mode: http://www.veripool.org/wiki/verilog-modeI invoke the vendor FPGA synthesis tools from the command line with my makefiles, which saves me the hassle of using their GUIs
The one case where I think the GUI is useful is is the netlist viewer, which can help you understand what the synthesis tools are producing. This is especially helpful when starting out.
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#4My recommendation for anyone starting CPU design is to not use the vendor FPGA tools for simulation. The simulators they bundle are often crippleware, and the vendor IDEs are painful. You're going to spend the majority of your time debugging your design in simulation, so setting up a good environment is important. There are a lot of great open source simulation tools now: - Verilator (Verilog) -- http://www.veripool.…
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#5My recommendation for anyone starting CPU design is to not use the vendor FPGA tools for simulation. The simulators they bundle are often crippleware, and the vendor IDEs are painful. You're going to spend the majority of your time debugging your design in simulation, so setting up a good environment is important. There are a lot of great open source simulation tools now: - Verilator (Verilog) -- http://www.veripool.…
The free versions of Modelsim are "crippled" by slowing down interpretation after crossing a threshold of executable lines but they no longer impose a 3x slowdown for code under the threshold. It is quite usable for the scale of designs most people would do on their own and you have to work to hit the LOC threshold. Other missing features are the price you pay for not paying anything.
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#6My recommendation for anyone starting CPU design is to not use the vendor FPGA tools for simulation. The simulators they bundle are often crippleware, and the vendor IDEs are painful. You're going to spend the majority of your time debugging your design in simulation, so setting up a good environment is important. There are a lot of great open source simulation tools now: - Verilator (Verilog) -- http://www.veripool.…
On the VHDL side the commercial simulators are still way ahead of GHDL. It still doesn't support all of VHDL-93 and it's missing more than just the esoteric dusty corners of the language. The free versions of Modelsim are "crippled" by slowing down interpretation after crossing a threshold of executable lines but they no longer impose a 3x slowdown for code under the threshold. It is quite usable for the scale of des…
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#7My recommendation for anyone starting CPU design is to not use the vendor FPGA tools for simulation. The simulators they bundle are often crippleware, and the vendor IDEs are painful. You're going to spend the majority of your time debugging your design in simulation, so setting up a good environment is important. There are a lot of great open source simulation tools now: - Verilator (Verilog) -- http://www.veripool.…
What about floor-planning or post place-and-route netlist viewing? Some things are pretty hard to do without the vendor's tools. Also, Xilinx tools are universely renowned for being terrible, but Altera's toolchain can be pretty decent. It at least approaches the quality a 90s programmer would expect.
I find the post place-and-route netlist viewer inscrutable. I have debugged some synthesis issues by generating the post synthesis simulation model in Verilog and digging through that in a text editor. Maybe that's a weird way to do it, but I find it much faster and easier, especially when I know the signal names I'm looking for.
My main problem is with the Altera GUI tools. It's a personal preference thing obviously, but I'm pretty attached to my editor, as are most people.
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#8Earlier quoted context omitted.
On the VHDL side the commercial simulators are still way ahead of GHDL. It still doesn't support all of VHDL-93 and it's missing more than just the esoteric dusty corners of the language. The free versions of Modelsim are "crippled" by slowing down interpretation after crossing a threshold of executable lines but they no longer impose a 3x slowdown for code under the threshold. It is quite usable for the scale of des…
I use Verilog, so I'm not as familiar with the state of VHDL tools. I've found Verilator to be much faster (although it cuts some corners) than the free versions of Modelsim. It's fairly stable and supports most of the core synthesizable SystemVerilog constructs.
Some tools are faster than others, but eventually as your design grows they are all slow.
At least then you can use whatever tool you please.
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#9My recommendation for anyone starting CPU design is to not use the vendor FPGA tools for simulation. The simulators they bundle are often crippleware, and the vendor IDEs are painful. You're going to spend the majority of your time debugging your design in simulation, so setting up a good environment is important. There are a lot of great open source simulation tools now: - Verilator (Verilog) -- http://www.veripool.…
What about floor-planning or post place-and-route netlist viewing? Some things are pretty hard to do without the vendor's tools. Also, Xilinx tools are universely renowned for being terrible, but Altera's toolchain can be pretty decent. It at least approaches the quality a 90s programmer would expect.
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#10Earlier quoted context omitted.
On the VHDL side the commercial simulators are still way ahead of GHDL. It still doesn't support all of VHDL-93 and it's missing more than just the esoteric dusty corners of the language. The free versions of Modelsim are "crippled" by slowing down interpretation after crossing a threshold of executable lines but they no longer impose a 3x slowdown for code under the threshold. It is quite usable for the scale of des…
I use Verilog, so I'm not as familiar with the state of VHDL tools. I've found Verilator to be much faster (although it cuts some corners) than the free versions of Modelsim. It's fairly stable and supports most of the core synthesizable SystemVerilog constructs.