SlideShare a Scribd company logo
1 of 22
INTERNSHIP PROGRAM
PRESENTATION
TRAINING ON-VLSI DESIGN AND VERIFICATION
Started on:-03-JUN-2022 to Ended on:-18-JUN-20212
Friday, June 30, 2023
1
Electronics & Communication Engineering
Name: GOLLA PAVAN SAI
Reg No: URK20EC1066
UNDER THE SUPERVISION OF
NEPOLEAN MANI
Project Leader
H
Contents
2
 Objective
 Introduction
 Overview of Training
 Software Tools
 Project Details
 Result
 Skills Acquired (Software)
 Discussion & Conclusion
 References
Friday, June 30, 2023
Department of Electronics & Communication Engineering
Objective
3
 XILINX VIVADO is a software suite produced by Xilinx for synthesis and analysis
of HDL designs, superseding Xilinx ISE with additional features for system on a
chip development and high-level synthesis.
 Vivado also introduces high-level synthesis, with a toolchain that converts C code into
programmable logic.
 In this laboratory session, we learned how to use some of the basic VERILOG functions and
how to display output in graphical form.
 The output came from analyzing codes as well as from examining the frequency response .
 In addition, it is used to program FPGAs.
Friday, June 30, 2023
Department of Electronics & Communication Engineering
Introduction
Friday, June 30, 2023
Department of Electronics & Communication Engineering
4
 XILINX VIVADO is a software package for high-performance mathematical computation,
visualization, and programming environment. It provides an interactive environment with
hundreds of built-in functions for technical computing, graphics, and animations.
 Xilinx's new Vivado Design Suite addressed this issue, because the software was developed
for higher capacity FPGAs
 Xilinx Vivado is a programming language environment, and it has refined data structures,
included built-in editing and debugged tools, and supports object-oriented programming.
Overview of Training
5
 VerilogHDL:
In the semiconductor and electronic design industry,
Verilog is a hardware description language(HDL)used to model electronic systems.
Verilog HDL, not to be confused with VHDL (a competing language), is most
commonly used in the design, verification, and implementation of digital logic chips at
the register- transfer level of abstraction.
It is also used in the verification of analog and mixed-signal circuits. A Verilog design
consists of a hierarchy of modules. Modules encapsulate design hierarchy, and
communicate with other modules through a set of declared input, output, and
bidirectional ports. Internally, a module can contain any combination of the following:
net/variable declarations (wire, reg,integer,etc.), concurrent and sequential statement
blocks, and instances of other modules (sub-hierarchies).
Friday, June 30, 2023
Department of Electronics & Communication Engineering
Overview of Training
Friday, June 30, 2023
Department of Electronics & Communication Engineering
6
 Hardware description languages such as Verilog differ from software programming
languages because they includeways of describing the propagation of time and
signal dependencies (sensitivity).
 Two assignment operators,a blocking assignment(=),anda non-blocking (<=)
assignment. The non-blocking assignment allows designers to describe a state-
machine update without needing to declare and use temporary storage variables.
 Since these concepts are part of Verilog's language semantics, designers could
quickly write descriptions of large circuits in a relatively compact and concise
form. At the time of Verilog's introduction (1984), Verilog represented a
tremendous productivity improvement for circuit designers who were already using
graphical schematic capture software and specially written software programs to
document and simulate electronic circuits.
Software Tools
Friday, June 30, 2023
Department of Electronics & Communication Engineering
7
 XILINX VIVADO
Project Details
8
A clock in verilog with Alarm
We are generating a clock with 7 output signals including Alarm signal, Hour, Minute, and seconds. All
the signals are discussed in detail further. The clock generated is in a 24 - hour format. We can give an
initial time value to the system when reset signal=1 or by turning the signal LD_time=1.
You can further set the alarm time by turning LD_alarm=1. The alarm is enabled or disabled using the
input AL_ON. The alarm rings only if AL_ON is 1.
STOP_al signal is used to stop the alarm. The input clock given as input is 10Hz. We have generated a
clk with time period 1 second from this input clock and used it to increment seconds and further minutes
and hours.
Input Signals: reset : Active high reset pulse, to set the time to the input hour and minute (as defined by
the H_in1, H_in0, M_in1, and M_in0 inputs) and the second to 00.
 It should also set the alarm value to 0.00.00, and to set the Alarm (output) low.For normal operation, this
input pin should be 0
Friday, June 30, 2023
Department of Electronics & Communication Engineering
Project Details
9
Friday, June 30, 2023
Department of Electronics & Communication Engineering
Project Details
Friday, June 30, 2023
Department of Electronics & Communication Engineering
10
Source code Retinopathy
Project Details
Friday, June 30, 2023
Department of Electronics & Communication Engineering
11
Project Details
Friday, June 30, 2023
Department of Electronics & Communication Engineering
12
Project Details
Friday, June 30, 2023
Department of Electronics & Communication Engineering
13
Project Details
Friday, June 30, 2023
Department of Electronics & Communication Engineering
14
Project Details
15
Friday, June 30, 2023
Department of Electronics & Communication Engineering
 CODE EXPLANATION :
clk : A 10Hz input clock. This should be used to generate each real-time second H_in1 : A
2-bit input used to set the most significant hour digit of the clock (if LD_time=1),or the most
significant hour digit of the alarm (if LD_alarm=1). Valid values are 0 to 2.
H_in0 : A 4-bit input used to set the least significant hour digit of the clock (if LD_time=1)
or the least significant hour digit of the alarm (if LD_alarm=1). Valid values are 0 to 9.
M_in1 : A 4-bit input used to set the most significant minute digit of the clock (if
LD_time=1),or the most significant minute digit of the alarm (if LD_alarm=1). Valid values
are 0 to 5.
M_in0 : A 4-bit input used to set the least significant minute digit of the clock (if
LD_time=1),or the least significant minute digit of the alarm (if LD_alarm=1). Valid values
are 0 to 9.
LD_time : If LD_time=1, the time should be set to the values on the inputs H_in1, H_in0,
M_in1, and M_in0. The second time should be set to 0.If LD_time=0, the clock should act
normally (i.e. second should be incremented every 10 clock cycles).
Project Details
Friday, June 30, 2023
Department of Electronics & Communication Engineering
16
LD_alarm : If LD_alarm=1, the alarm time should be set to the values on the inputs H_in1,
H_in0, M_in1, and M_in0.If LD_alarm=0, the clock should act normally.
STOP_al : If the Alarm (output) is high, then STOP_al=1 will bring the output back low.
AL_ON : If high, the alarm is ON (and Alarm will go high if the alarm time equals the real
time). If low the the alarm function is OFF.
Output Signals:
Alarm : This will go high if the alarm time equals the current time, and AL_ON is high.
This will remain high, until STOP_al goes high, which will bring Alarm back low.
H_out1 : The most significant digit of the hour. Valid values are 0 to 2.
H_out0 : The least significant digit of the hour. Valid values are 0 to 9.
M_out1 : The most significant digit of the minute. Valid values are 0 to 5.
M_out0 : The least significant digit of the minute. Valid values are 0 to 9.
S_out1 : The most significant digit of the minute. Valid values are 0 to 5.
ProjectDetails
Friday, June 30, 2023
Department of Electronics & Communication Engineering
17
S_out0 : The least significant digit of the minute. Valid values are 0 to 9.
Internal Signals: clk_1s : 1-s
clock
17tmp_1s : count for creating 1-s clock
 tmp_hour, tmp_minute, tmp_second : counter for clock hour, minute and second c_hour1,a_hour1 :
The most significant hour digit of the temp clock and alarm.
c_hour0,a_hour0 : The least significant hour digit of the temp clock and alarm. c_min1,a_min1 :
The most significant minute digit of the temp clock and alarm. c_min0,a_min0 : The least
significant minute digit of the temp clock and alarm. c_sec1,a_sec1 : The most significant second
digit of the temp clock and alarm.
c_sec0,a_sec0 : The least significant minute digit of the temp clock and alarm.
);
Result
Friday, June 30, 2023
Department of Electronics & Communication Engineering
18
Result
Friday, June 30, 2023
Department of Electronics & Communication Engineering
19
Skills Acquired (Software)
20
• Implement and test your algorithms easily.
• Develop the computational codes easily.
• Debug easily.
Friday, June 30, 2023
Department of Electronics & Communication Engineering
Discussion & Conclusion
Friday, June 30, 2023
Department of Electronics & Communication Engineering
21
I acknowledge my gratitude and thank to all the well
knowledge persons for giving me opportunity to
avail all the best facilities available at this
technologic through which I have gained knowledge
thinking so as too just in the environment suitable for
harmonic adjustment. I am grateful to the following
persons for various help rendered by them during the
training period
References
Friday, June 30, 2023
Department of Electronics & Communication Engineering
22
• IEEE Standard for System Verilog— Unified Hardware Design, Specification, and
Verification Language.
• Quick Reference for Verilog HDL by Rajeev Madhavan.
• Verilog HDL (A guide to digital design and synthesis) by Samir Palnitkar. • SV
Testbench Architecture: https://www.edaplayground.com/x/BvMQ
• Reference Websites: - testbench.in, verificationguide.com, chipverify.com

More Related Content

Similar to INTERNSHIP_PTTX_1066.pptx

IRJET- Performance Estimation of FIR Filter using Null Convention Logic
IRJET-  	  Performance Estimation of FIR Filter using Null Convention LogicIRJET-  	  Performance Estimation of FIR Filter using Null Convention Logic
IRJET- Performance Estimation of FIR Filter using Null Convention LogicIRJET Journal
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIRJET Journal
 
A Smart Handheld Measuring and Testing Electronic Device with Touch Screen
A Smart Handheld Measuring and Testing Electronic Device with Touch ScreenA Smart Handheld Measuring and Testing Electronic Device with Touch Screen
A Smart Handheld Measuring and Testing Electronic Device with Touch ScreenIJTET Journal
 
A Simple and Reliable Touch Sensitive Security System
A Simple and Reliable Touch Sensitive Security SystemA Simple and Reliable Touch Sensitive Security System
A Simple and Reliable Touch Sensitive Security Systempaperpublications3
 
Transmitting Digital Signal through Light Pulses
Transmitting Digital Signal through Light PulsesTransmitting Digital Signal through Light Pulses
Transmitting Digital Signal through Light PulsesKarthik Rathinavel
 
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual)  vatsal shah-ec_4th yearFloor cleaning robot(autonomus mannual)  vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th yearVatsal N Shah
 
The Role Of Software And Hardware As A Common Part Of The...
The Role Of Software And Hardware As A Common Part Of The...The Role Of Software And Hardware As A Common Part Of The...
The Role Of Software And Hardware As A Common Part Of The...Sheena Crouch
 
Embedded Tsunami Warning System
Embedded Tsunami Warning System Embedded Tsunami Warning System
Embedded Tsunami Warning System cscpconf
 
IRJET- Smart Hand Gloves for Disable People
IRJET-  	  Smart Hand Gloves for Disable PeopleIRJET-  	  Smart Hand Gloves for Disable People
IRJET- Smart Hand Gloves for Disable PeopleIRJET Journal
 
Smoke Alert System For Dye Industries Using IoT
Smoke Alert System For Dye Industries Using IoTSmoke Alert System For Dye Industries Using IoT
Smoke Alert System For Dye Industries Using IoTIRJET Journal
 
Embedded System Microcontroller Interactive Course using BASCOM-AVR - Lecture12
Embedded System Microcontroller Interactive Course using BASCOM-AVR - Lecture12Embedded System Microcontroller Interactive Course using BASCOM-AVR - Lecture12
Embedded System Microcontroller Interactive Course using BASCOM-AVR - Lecture12AL-AWAIL for Electronic Engineering
 
LORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEMLORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEMIRJET Journal
 
Voice Based Home Automation
Voice Based Home AutomationVoice Based Home Automation
Voice Based Home AutomationSumukh Athrey
 
Ijeee 33-36-surveillance system for coal mines based on wireless sensor network
Ijeee 33-36-surveillance system for coal mines based on wireless sensor networkIjeee 33-36-surveillance system for coal mines based on wireless sensor network
Ijeee 33-36-surveillance system for coal mines based on wireless sensor networkKumar Goud
 
IRJET- Optimal Strategy for Extraction of Traffic Based on PLC
IRJET- Optimal Strategy for Extraction of Traffic Based on PLCIRJET- Optimal Strategy for Extraction of Traffic Based on PLC
IRJET- Optimal Strategy for Extraction of Traffic Based on PLCIRJET Journal
 
IRJET- Automated Elevator-An Attentive Elevator to Elevate using Speech Recog...
IRJET- Automated Elevator-An Attentive Elevator to Elevate using Speech Recog...IRJET- Automated Elevator-An Attentive Elevator to Elevate using Speech Recog...
IRJET- Automated Elevator-An Attentive Elevator to Elevate using Speech Recog...IRJET Journal
 
Implementation of an arithmetic logic using area efficient carry lookahead adder
Implementation of an arithmetic logic using area efficient carry lookahead adderImplementation of an arithmetic logic using area efficient carry lookahead adder
Implementation of an arithmetic logic using area efficient carry lookahead adderVLSICS Design
 

Similar to INTERNSHIP_PTTX_1066.pptx (20)

IRJET- Performance Estimation of FIR Filter using Null Convention Logic
IRJET-  	  Performance Estimation of FIR Filter using Null Convention LogicIRJET-  	  Performance Estimation of FIR Filter using Null Convention Logic
IRJET- Performance Estimation of FIR Filter using Null Convention Logic
 
Bds lab 4
Bds lab 4Bds lab 4
Bds lab 4
 
Lpg detector final ppt
Lpg detector final pptLpg detector final ppt
Lpg detector final ppt
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring System
 
A Smart Handheld Measuring and Testing Electronic Device with Touch Screen
A Smart Handheld Measuring and Testing Electronic Device with Touch ScreenA Smart Handheld Measuring and Testing Electronic Device with Touch Screen
A Smart Handheld Measuring and Testing Electronic Device with Touch Screen
 
A Simple and Reliable Touch Sensitive Security System
A Simple and Reliable Touch Sensitive Security SystemA Simple and Reliable Touch Sensitive Security System
A Simple and Reliable Touch Sensitive Security System
 
Transmitting Digital Signal through Light Pulses
Transmitting Digital Signal through Light PulsesTransmitting Digital Signal through Light Pulses
Transmitting Digital Signal through Light Pulses
 
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual)  vatsal shah-ec_4th yearFloor cleaning robot(autonomus mannual)  vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
 
The Role Of Software And Hardware As A Common Part Of The...
The Role Of Software And Hardware As A Common Part Of The...The Role Of Software And Hardware As A Common Part Of The...
The Role Of Software And Hardware As A Common Part Of The...
 
Embedded Tsunami Warning System
Embedded Tsunami Warning System Embedded Tsunami Warning System
Embedded Tsunami Warning System
 
IRJET- Smart Hand Gloves for Disable People
IRJET-  	  Smart Hand Gloves for Disable PeopleIRJET-  	  Smart Hand Gloves for Disable People
IRJET- Smart Hand Gloves for Disable People
 
Smoke Alert System For Dye Industries Using IoT
Smoke Alert System For Dye Industries Using IoTSmoke Alert System For Dye Industries Using IoT
Smoke Alert System For Dye Industries Using IoT
 
Voice_based_HA
Voice_based_HAVoice_based_HA
Voice_based_HA
 
Embedded System Microcontroller Interactive Course using BASCOM-AVR - Lecture12
Embedded System Microcontroller Interactive Course using BASCOM-AVR - Lecture12Embedded System Microcontroller Interactive Course using BASCOM-AVR - Lecture12
Embedded System Microcontroller Interactive Course using BASCOM-AVR - Lecture12
 
LORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEMLORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEM
 
Voice Based Home Automation
Voice Based Home AutomationVoice Based Home Automation
Voice Based Home Automation
 
Ijeee 33-36-surveillance system for coal mines based on wireless sensor network
Ijeee 33-36-surveillance system for coal mines based on wireless sensor networkIjeee 33-36-surveillance system for coal mines based on wireless sensor network
Ijeee 33-36-surveillance system for coal mines based on wireless sensor network
 
IRJET- Optimal Strategy for Extraction of Traffic Based on PLC
IRJET- Optimal Strategy for Extraction of Traffic Based on PLCIRJET- Optimal Strategy for Extraction of Traffic Based on PLC
IRJET- Optimal Strategy for Extraction of Traffic Based on PLC
 
IRJET- Automated Elevator-An Attentive Elevator to Elevate using Speech Recog...
IRJET- Automated Elevator-An Attentive Elevator to Elevate using Speech Recog...IRJET- Automated Elevator-An Attentive Elevator to Elevate using Speech Recog...
IRJET- Automated Elevator-An Attentive Elevator to Elevate using Speech Recog...
 
Implementation of an arithmetic logic using area efficient carry lookahead adder
Implementation of an arithmetic logic using area efficient carry lookahead adderImplementation of an arithmetic logic using area efficient carry lookahead adder
Implementation of an arithmetic logic using area efficient carry lookahead adder
 

Recently uploaded

Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...Florian Roscheck
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]📊 Markus Baersch
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一fhwihughh
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998YohFuh
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 

Recently uploaded (20)

Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
Decoding Loan Approval: Predictive Modeling in Action
Decoding Loan Approval: Predictive Modeling in ActionDecoding Loan Approval: Predictive Modeling in Action
Decoding Loan Approval: Predictive Modeling in Action
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998
 
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 

INTERNSHIP_PTTX_1066.pptx

  • 1. INTERNSHIP PROGRAM PRESENTATION TRAINING ON-VLSI DESIGN AND VERIFICATION Started on:-03-JUN-2022 to Ended on:-18-JUN-20212 Friday, June 30, 2023 1 Electronics & Communication Engineering Name: GOLLA PAVAN SAI Reg No: URK20EC1066 UNDER THE SUPERVISION OF NEPOLEAN MANI Project Leader H
  • 2. Contents 2  Objective  Introduction  Overview of Training  Software Tools  Project Details  Result  Skills Acquired (Software)  Discussion & Conclusion  References Friday, June 30, 2023 Department of Electronics & Communication Engineering
  • 3. Objective 3  XILINX VIVADO is a software suite produced by Xilinx for synthesis and analysis of HDL designs, superseding Xilinx ISE with additional features for system on a chip development and high-level synthesis.  Vivado also introduces high-level synthesis, with a toolchain that converts C code into programmable logic.  In this laboratory session, we learned how to use some of the basic VERILOG functions and how to display output in graphical form.  The output came from analyzing codes as well as from examining the frequency response .  In addition, it is used to program FPGAs. Friday, June 30, 2023 Department of Electronics & Communication Engineering
  • 4. Introduction Friday, June 30, 2023 Department of Electronics & Communication Engineering 4  XILINX VIVADO is a software package for high-performance mathematical computation, visualization, and programming environment. It provides an interactive environment with hundreds of built-in functions for technical computing, graphics, and animations.  Xilinx's new Vivado Design Suite addressed this issue, because the software was developed for higher capacity FPGAs  Xilinx Vivado is a programming language environment, and it has refined data structures, included built-in editing and debugged tools, and supports object-oriented programming.
  • 5. Overview of Training 5  VerilogHDL: In the semiconductor and electronic design industry, Verilog is a hardware description language(HDL)used to model electronic systems. Verilog HDL, not to be confused with VHDL (a competing language), is most commonly used in the design, verification, and implementation of digital logic chips at the register- transfer level of abstraction. It is also used in the verification of analog and mixed-signal circuits. A Verilog design consists of a hierarchy of modules. Modules encapsulate design hierarchy, and communicate with other modules through a set of declared input, output, and bidirectional ports. Internally, a module can contain any combination of the following: net/variable declarations (wire, reg,integer,etc.), concurrent and sequential statement blocks, and instances of other modules (sub-hierarchies). Friday, June 30, 2023 Department of Electronics & Communication Engineering
  • 6. Overview of Training Friday, June 30, 2023 Department of Electronics & Communication Engineering 6  Hardware description languages such as Verilog differ from software programming languages because they includeways of describing the propagation of time and signal dependencies (sensitivity).  Two assignment operators,a blocking assignment(=),anda non-blocking (<=) assignment. The non-blocking assignment allows designers to describe a state- machine update without needing to declare and use temporary storage variables.  Since these concepts are part of Verilog's language semantics, designers could quickly write descriptions of large circuits in a relatively compact and concise form. At the time of Verilog's introduction (1984), Verilog represented a tremendous productivity improvement for circuit designers who were already using graphical schematic capture software and specially written software programs to document and simulate electronic circuits.
  • 7. Software Tools Friday, June 30, 2023 Department of Electronics & Communication Engineering 7  XILINX VIVADO
  • 8. Project Details 8 A clock in verilog with Alarm We are generating a clock with 7 output signals including Alarm signal, Hour, Minute, and seconds. All the signals are discussed in detail further. The clock generated is in a 24 - hour format. We can give an initial time value to the system when reset signal=1 or by turning the signal LD_time=1. You can further set the alarm time by turning LD_alarm=1. The alarm is enabled or disabled using the input AL_ON. The alarm rings only if AL_ON is 1. STOP_al signal is used to stop the alarm. The input clock given as input is 10Hz. We have generated a clk with time period 1 second from this input clock and used it to increment seconds and further minutes and hours. Input Signals: reset : Active high reset pulse, to set the time to the input hour and minute (as defined by the H_in1, H_in0, M_in1, and M_in0 inputs) and the second to 00.  It should also set the alarm value to 0.00.00, and to set the Alarm (output) low.For normal operation, this input pin should be 0 Friday, June 30, 2023 Department of Electronics & Communication Engineering
  • 9. Project Details 9 Friday, June 30, 2023 Department of Electronics & Communication Engineering
  • 10. Project Details Friday, June 30, 2023 Department of Electronics & Communication Engineering 10 Source code Retinopathy
  • 11. Project Details Friday, June 30, 2023 Department of Electronics & Communication Engineering 11
  • 12. Project Details Friday, June 30, 2023 Department of Electronics & Communication Engineering 12
  • 13. Project Details Friday, June 30, 2023 Department of Electronics & Communication Engineering 13
  • 14. Project Details Friday, June 30, 2023 Department of Electronics & Communication Engineering 14
  • 15. Project Details 15 Friday, June 30, 2023 Department of Electronics & Communication Engineering  CODE EXPLANATION : clk : A 10Hz input clock. This should be used to generate each real-time second H_in1 : A 2-bit input used to set the most significant hour digit of the clock (if LD_time=1),or the most significant hour digit of the alarm (if LD_alarm=1). Valid values are 0 to 2. H_in0 : A 4-bit input used to set the least significant hour digit of the clock (if LD_time=1) or the least significant hour digit of the alarm (if LD_alarm=1). Valid values are 0 to 9. M_in1 : A 4-bit input used to set the most significant minute digit of the clock (if LD_time=1),or the most significant minute digit of the alarm (if LD_alarm=1). Valid values are 0 to 5. M_in0 : A 4-bit input used to set the least significant minute digit of the clock (if LD_time=1),or the least significant minute digit of the alarm (if LD_alarm=1). Valid values are 0 to 9. LD_time : If LD_time=1, the time should be set to the values on the inputs H_in1, H_in0, M_in1, and M_in0. The second time should be set to 0.If LD_time=0, the clock should act normally (i.e. second should be incremented every 10 clock cycles).
  • 16. Project Details Friday, June 30, 2023 Department of Electronics & Communication Engineering 16 LD_alarm : If LD_alarm=1, the alarm time should be set to the values on the inputs H_in1, H_in0, M_in1, and M_in0.If LD_alarm=0, the clock should act normally. STOP_al : If the Alarm (output) is high, then STOP_al=1 will bring the output back low. AL_ON : If high, the alarm is ON (and Alarm will go high if the alarm time equals the real time). If low the the alarm function is OFF. Output Signals: Alarm : This will go high if the alarm time equals the current time, and AL_ON is high. This will remain high, until STOP_al goes high, which will bring Alarm back low. H_out1 : The most significant digit of the hour. Valid values are 0 to 2. H_out0 : The least significant digit of the hour. Valid values are 0 to 9. M_out1 : The most significant digit of the minute. Valid values are 0 to 5. M_out0 : The least significant digit of the minute. Valid values are 0 to 9. S_out1 : The most significant digit of the minute. Valid values are 0 to 5.
  • 17. ProjectDetails Friday, June 30, 2023 Department of Electronics & Communication Engineering 17 S_out0 : The least significant digit of the minute. Valid values are 0 to 9. Internal Signals: clk_1s : 1-s clock 17tmp_1s : count for creating 1-s clock  tmp_hour, tmp_minute, tmp_second : counter for clock hour, minute and second c_hour1,a_hour1 : The most significant hour digit of the temp clock and alarm. c_hour0,a_hour0 : The least significant hour digit of the temp clock and alarm. c_min1,a_min1 : The most significant minute digit of the temp clock and alarm. c_min0,a_min0 : The least significant minute digit of the temp clock and alarm. c_sec1,a_sec1 : The most significant second digit of the temp clock and alarm. c_sec0,a_sec0 : The least significant minute digit of the temp clock and alarm. );
  • 18. Result Friday, June 30, 2023 Department of Electronics & Communication Engineering 18
  • 19. Result Friday, June 30, 2023 Department of Electronics & Communication Engineering 19
  • 20. Skills Acquired (Software) 20 • Implement and test your algorithms easily. • Develop the computational codes easily. • Debug easily. Friday, June 30, 2023 Department of Electronics & Communication Engineering
  • 21. Discussion & Conclusion Friday, June 30, 2023 Department of Electronics & Communication Engineering 21 I acknowledge my gratitude and thank to all the well knowledge persons for giving me opportunity to avail all the best facilities available at this technologic through which I have gained knowledge thinking so as too just in the environment suitable for harmonic adjustment. I am grateful to the following persons for various help rendered by them during the training period
  • 22. References Friday, June 30, 2023 Department of Electronics & Communication Engineering 22 • IEEE Standard for System Verilog— Unified Hardware Design, Specification, and Verification Language. • Quick Reference for Verilog HDL by Rajeev Madhavan. • Verilog HDL (A guide to digital design and synthesis) by Samir Palnitkar. • SV Testbench Architecture: https://www.edaplayground.com/x/BvMQ • Reference Websites: - testbench.in, verificationguide.com, chipverify.com