Verilog and its types
- Get link
- X
- Other Apps
(Note: Click Label To Check various Topics like Diodes,Rectifier,etc.)
Contact tamilblogelectronic@gmail.com And other social media for Soft copies of any Book.
What is Verilog HDL?
- Its a Hard Description language (HDL)
- its a high level language to describe the circuit by syntax and sentences
- its is similar other computer software languages like C++,
- Verilog is hardware language like circuits with transistor or switch level, gate level.
Who developed Verilog?
Verilog is developed by
gateway design automation for logic simulation in 1984
Verilog HDL:
Its has 4 level of abstraction (abstractions means simplified version of something technical )
- Behavior level or Algorithmic level
- Data flow level
- Gate level
- Switch level
Why there are four abstraction?
Four abstraction is because we can write four
different method to write a single verilog circuit code .
What is Behavior level or Algorithmic level ?
Code:

What is Data flow level ?
by name itself you can notice that coding or coding logic based how data or bits flow from input to output.
Code:
module example (input a, b , output c);
assign c = a & b; (Note: "&" indicate AND GATE)
endmodule
Explanation:

What is Gate level ?
by name itself you can notice that coding logic based on gate
like : AND, OR,etc.
![]() |
AND GATE |
and (c,a,b); ( Note : and - gate, (output,input1, input2)
endmodule
Switch level:
Coding logic based on switch level i.e transistor level
![]() |
FIG 1 |
![]() |
FIG 2 |
Click Label To Check various Topics like
Diodes,Rectifier,etc.
Contact tamilblogelectronic@gmail.com For
Soft copies of any Book.
I Try Contact back
Immediately ( Max. 24 Hrs)
Telegram Link: https://t.me/tamilblog_electronics
Instagram Link: https://www.instagram.com/tamilblog_electronic/
Related Post
- XILINUX VIVADO INSTALL (VERILOG SOFTWARE)
- VERILOG PROJECT (TRAFFIC LIGHT)
- Get link
- X
- Other Apps
Comments
Post a Comment
Welcome