answersLogoWhite

0


Best Answer

In structural modeling of VHDL, the concept of components is used. In this model, the system to be designed is considered as a combination of sub structures. These sub structures are called components.

For example, a full adder is a combination of two half adders and an or gate. Hence, the components used for designing a full adder are

  • half adder
  • OR gate

Initially, these components are mentioned in the architecture of a full adder VHDL program. We call this as component initiation. Then the components are called onto the main program and used.

Remember, we are using the functionality of the components in main program but we are not coding them in the main program. The code for the component programs will be present somewhere else in the project.

Means, code them once and use them infinite number of times.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is component initiation in VHDL?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the vhdl code for 8253 microprocessor?

VHDL code for 8253 need to be written in structural modeling of VHDL. It will be a bunch of programs related to each and every component or functionality we use in 8253 and need to be combined. It is not a single program. It is a combination of several programs.


What is VHDL calculators?

A virtual calculator can be implemented using VHDL. We call it VHDL calculator.


Is VHDL text or graphic programmed?

VHDL is a text based programming language.


What are the supporting functions by vhdl?

VHDL provides conversion functions and resolution functions.


What is the vhdl code for binary to hex convertion?

vhdl code for binary to Hexadecimal ?


Vhdl code for assending order of numbers?

vhdl code for ascending order of numbers


Which operator cannot be synthesized by a VHDL synthesis tool?

"&" operator is not synthesized by VHDL synthesis tool.


Why function in VHDL?

A function is a subprogram written in VHDL. This program can be called and used in other programs.


How do you build 8085 using vhdl?

VHDL is a hardware description language. It describes the functionality of a hardware as a program. If we know the architecture of 8085, the same can be implemented or coded using VHDL.


What is the latest VHDL version?

In 2008, Accellera released VHDL 4.0 to the IEEE for balloting for inclusion in IEEE 1076-2008. The VHDL standard IEEE 1076-2008 was published in January 2009. Currently, IEEE 1076-2008 is the latest version of VHDL.


4 Difference between c program and vhdl program?

There are 4 main differences between C programming and VHDL programming. C is a mid-level language, while VHDL is a hardware description language. C can handle one type of instruction, while VHDL can handle two. C does not require as much resource usage as VHDL. C can be written only with logical thinking, but a VHDL programmer must understand hardware circuits.


What is the basics of VHDL?

VHDL is a hardware description language. You can describe the hardware in three different ways using VHDL. 1. dataflow model 2. behavioral model 3. structural model