Saturday, May 4, 2024
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 8070  / 2 Years ago, sat, october 8, 2022, 6:47:55

Drawing digital circuits can become a mess very fast which makes testing those even more difficult. Doing it offline is a painful job with all those wires. So, what GUI software is recommended for building digital circuits and testing them?


More From » software-recommendation

 Answers
0

2022 Update


The original Logisim is currently unmaintained, however Logisim Evolution is now the successor, and still open source and maintained at https://github.com/logisim-evolution/logisim-evolution. It has support for Linux (Deb and RPM), Mac and Windows. It is still purely digital, and easy to run.


Old answer


Logisim is not in the repos, but being a single java jar, should be fairly easy to get going. It is purely digital, without the discrete and analogue components. It is however quite sophisticated - I've been putting together a simulation of a single instruction CPU with it.


Instructions for getting and running it:



  1. Download the .jar file from http://sourceforge.net/projects/circuit/



  2. If you saved the file to ~/apps/logisim-generic-2.7.1.jar, you can run it from a terminal with:


     java -jar ~/apps/logisim-generic-2.7.1.jar


  3. To save yourself from typing that the whole time, create the executable ~/bin/logisim containing


     #!/bin/sh
    java -jar ~/apps/logisim-generic-2.7.1.jar


  4. Make it executable:


     chmod +x ~/bin/logisim


  5. If ~/bin existed before, it's already in your $PATH. Otherwise, re-login to update your $PATH. From now on, you can start it by running:


     logisim



If you update logisim later, it's as easy as putting the new file in ~/apps/ and change the filename in ~/bin/logisim


Well, now it's there in the ubuntu 14.04 repositories as well, just type :-


   sudo apt-get install logisim 

to install it.


[#43381] Monday, October 10, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
brasiplacar

Total Points: 314
Total Questions: 124
Total Answers: 97

Location: Dominican Republic
Member since Wed, Mar 17, 2021
3 Years ago
brasiplacar questions
Sat, Sep 4, 21, 13:11, 3 Years ago
Tue, Jan 10, 23, 06:22, 1 Year ago
Wed, Oct 13, 21, 15:19, 3 Years ago
Wed, May 4, 22, 00:06, 2 Years ago
Thu, Jan 5, 23, 15:40, 1 Year ago
;