Skip to content
This repository was archived by the owner on Nov 26, 2020. It is now read-only.

Commit 9671279

Browse files
Updated README.md
1 parent bfe2f82 commit 9671279

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ This is a tutorial repository to learn verilog easily with all the basics that a
44

55
---
66

7+
#### Installation For Linux
8+
9+
* sudo apt-get update
10+
* sudo apt-get install verilog
11+
* sudo apt-get install gtkwave
12+
13+
---
714
#### Introduction
815

916
Verilog is a hardware language. Examples of such languages are VHDL( VHSIC(Very High Speed Integrated Circuit) HDL).
@@ -40,14 +47,14 @@ Integers, Arrays, Memories, Parameters, Strings are few other datatypes.
4047
* Module Instantiation : Process of connecting one module to another.
4148
Its subparts are Positional Mapping and Nomenclature Based Mapping.
4249
```
43-
ex 1 : module posmap(q,clk,rst)
50+
ex 1 : module pos_map(q,clk,rst)
4451
output[1:0] q;
4552
input clk, rst;
4653
tflipflop lab0(q[0], clk, rst);
4754
tflipflop lab1(q[1], clk, rst);
4855
end
4956
50-
ex 2 : module posmap(q,clk,rst)
57+
ex 2 : module nom_map(q,clk,rst)
5158
output[1:0] q;
5259
input clk, rst;
5360
tflipflop lab0(.q(q[0]), .clk(clk), .rst(rst));
@@ -92,5 +99,13 @@ More relevant points to be added.
9299

93100
---
94101

102+
#### Case-Study
103+
104+
* ![Biometric Autherization : Authorization happens only when hashed value is matched for particular input](src/BiometricsImplement.v)
105+
106+
---
95107
#### DYI Codes
108+
96109
* Half Subtractor, Full Subtractor, Half Adder, Full Adder : Using DataFlow, LogicGate Modelling, case statements.
110+
* Master-Slave JK Flip-Flop : Truth table for master and slave latch both.
111+

0 commit comments

Comments
 (0)