Internship Presentation
Internship Presentation
1. Objective
2. Certificate of Mini project/ Internship
3. Introduction to VLSI
4. SoC Design
5. ASIC Vs FPGA
6. VLSI design flow
7. Front end design flow
8. Back end design flow
9. Introduction to Verilog
10. Data types in Verilog
11. Verilog Operators
12. Conclusion
Objective
FGPA : It is an integrated circuit which can be “field” programmed to work as per the
intended design. It means it can work as a microprocessor, or as an encryption unit, or
graphics card, or even all these three at once.
1. Algorithmic level
3. Gate level
4. Switch level
DATA TYPES IN VERILOG
VERILOG OPERATORS
Arithmetic Operators : Relational Operators : Bit-wise Operators :
+ (addition) < (less than)
(subtraction) <= (less than or equal to) ~ (bitwise NOT)
* (multiplication) > (greater than) & (bitwise AND)
/ (division) >= (greater than or equal to) | (bitwise OR) ^
% (modulus) == (equal to) (bitwise XOR)
!= (not equal to) ~^ or ^~(bitwise XNOR)