diff options
author | Rahul P | 2020-03-23 11:55:26 +0530 |
---|---|---|
committer | GitHub | 2020-03-23 11:55:26 +0530 |
commit | a28522ac35da6f275f6ca73c47006b39c8a6725f (patch) | |
tree | 07f4552f91991847b6910a5bc1aadd09648ae3df /readme.md | |
parent | 1cef7f83a9f34177b1874ab40429fbeaee6d2ab9 (diff) | |
download | nghdl-a28522ac35da6f275f6ca73c47006b39c8a6725f.tar.gz nghdl-a28522ac35da6f275f6ca73c47006b39c8a6725f.tar.bz2 nghdl-a28522ac35da6f275f6ca73c47006b39c8a6725f.zip |
Update readme.mdv2.0
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 27 |
1 files changed, 14 insertions, 13 deletions
@@ -6,21 +6,22 @@ It contains all the documenation for Ngspice and Ghdl related work. > Note: This project is in beta version and has been tested for rings, counters and PWM controllers. -## What exactly interfacing of ngspice ghdl do? -Ngspice support mixed mode simulation. It can simulate both digital and analog component. +## How is Ngspice interfaced with GHDL? +Ngspice supports mixed mode simulation. It can simulate both digital and analog components. -Ngspice has something called model which define the functionality of your circuit,which can be used in the netlist. For example you can create adder model in ngspice and use it in any circuit netlist of ngspice. +Ngspice has something called code-model which defines the behavior of your component and can be used in the netlist. For example you can create a full-adder's code-model in Ngspice and use it in any circuit netlist of Ngspice. -Now the question is if we already have digital model in ngspice why this interfacing ? -Well in ngspice it is little tediouse to write your digital model. But many people are familiar with ghdl and can easily write the vhdl code. -So the idea of interfacing is just to write ghdl code for a model and install it as dummy model in ngspice. So whenever ngspice look -for that model it will actually call the ghdl to get the result. +Now the question is if we already have digital model creation in Ngspice, then why this interfacing? + +Well, in Ngspice, it is difficult to write your own digital code-models. Though, many people are familiar with GHDL and can easily write the VHDL code. +So the idea of interfacing is just to write VHDL code for a model and use it as a dummy model in Ngspice. Thus, whenever Ngspice looks for that model, it will actually call GHDL to get the results. +GHDL's foreign language interface is used for this inter-process communication. ## Pre-requisites -1. Ubuntu 12.04-16.04 (You can try it on other version and let us know) -2. Python 2.7 -3. PyQt4 +1. Ubuntu 16.04-18.04 (You can try it on other version and let us know) +2. GHDL (LLVM)-0.36 +3. Ngspice-31 ## How to install? @@ -28,13 +29,13 @@ This module is made available with eSim (Electronic Circuit Simulation). Refer https://esim.fossee.in/ for more information. -## Installed Structure +## Installed Code Structure 1. Ngspice will be installed in home directory $HOME. 2. Source code for all other file will be present in ~/.esim-nghdl -3. symlink nghdl is stored in /usr/local/bin +3. symlink "nghdl" is stored in /usr/local/bin -## FEATURES +## Features 1. Support for 512 digital models. 2. Support for digital models upto 64 output ports/pins. 3. Multiple instances of same digital model. |