Wednesday 8 March 2017

digital logic - Graphical circuit simulator like Logisim


I wanted to make a CPU and then somehow measure its efficiency/speed.


Logisim is a little buggy, and I don't think it allows you to do any sort of testing/measurement. Does a tool like this exist?



Answer



For a complex project such as this, you would be better to use an HDL like Verilog or VHDL and a simulator.


There are open source Verilog tools available like Icarus. Also since all the major FPGA vendors have a free version of their dev tools, you could just download and use these.
For example the free version of Xilinx ISE has HDL and schematic entry capabilites, an excellent simulation tool. Actel's (now Microsemi) Libero IDE comes with similar HDL/schematic entry and Modelsim for simulation.



No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...