Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to pass a (generic) parameter to different blocks?

Status
Not open for further replies.

Hugo17

Junior Member level 1
Joined
Oct 8, 2015
Messages
18
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
162
I do have following block diagram which I would like to connect with a bus that use a generic parameter (adc). The blockdiagram looks like this:

block.png


The implementation for the file "block_name.vhd" is:

Code:
LIBRARY ieee;
USE ieee.std_logic_1164.all;


--  Entity Declaration

ENTITY block_name IS
-- {{ALTERA_IO_BEGIN}} DO NOT REMOVE THIS LINE!
GENERIC(width : INTEGER := adc);
PORT
(
gi_bus : OUT STD_LOGIC_VECTOR(width to 0)
);
-- {{ALTERA_IO_END}} DO NOT REMOVE THIS LINE!

END block_name;


--  Architecture Body

ARCHITECTURE block_name_architecture OF block_name IS

BEGIN

END block_name_architecture;

Does someone know how to fix this problem?

Thanks!
 

Declare the block you want to instantiate as a component in your design.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top