You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@
10
10
6.[How To Use?](#how-to-use)
11
11
7.[Create your own custom abstraction](#creating-a-custom-hardware-abstraction)
12
12
8.[Contributors](#contributors)
13
+
9.[License](LICENSE)
13
14
14
15
### About PyArch
15
16
PyArch is basically, a hardware abstraction library that can be used to model a digital system. It provides construct for modeling the system hierarchically and supports both top-down and bottom-up design methodologies.
@@ -32,8 +33,16 @@ As computer science students, we were reluctant to learn a totally new language
32
33
-__Wide range of Abstraction levels__: Ranging from abstract behavioral descriptions [see Hardware](utils/new.py) to [precise gate level descriptions](combinational/gates.py) to hardware built on top of these abstractions ([Decoders](combinational/decoders.py), [Arithmetic circuits such as Adders](combinational/arithmetics.py))
33
34
34
35
### Installation
35
-
git clone https://github.com/jumpip/PyArch.git & cd PyArch/
36
-
python setup.py install
36
+
```
37
+
git clone https://github.com/jumpip/PyArch.git & cd PyArch/
38
+
python setup.py install
39
+
```
40
+
41
+
or
42
+
43
+
```
44
+
pip install pyarch
45
+
```
37
46
38
47
### Inbuilt Abstractions:
39
48
- Gates
@@ -130,3 +139,4 @@ Contributors END -->
130
139
| :---: | :---: | :---: |
131
140
<!-- Contributors table END -->
132
141
142
+
### PyArch is distributed under the [MIT License](LICENSE)
0 commit comments