Earlier quoted context omitted.
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.
Verilator only supports a synthesizable subset of verilog, so if you want to write a testbench you are either going to be writing it with synthesizable verilog ( not recommended) or with C++ (or something else you figure out how to link in).
Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
11–13 of 13 posts
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#12I remember doing this stuff in my computer architecture classes, Xilinx is incredibly powerful but also incredibly painful to use.
Re: Designing a CPU in VHDL, Part 2: Xilinx ISE Suite, Register File, Testing
#13I remember doing this stuff in my computer architecture classes, Xilinx is incredibly powerful but also incredibly painful to use.
I am amazed with the functionality of the free version of ISE (both in simulation and floor plan design). I have used this software to prototype and implement a 3rd order pipelined sigma-delta modulator on a FPGA, and several simple CPLD projects which didn't require simulation.
The simulator is far from crippled. I was able to read input from a binary test vector file into the simulator, run it though the model, and save the output to file. I found this very useful during development to compare the VHDL implementation with the prototype I had written in C.