what is 'A=>0' ?

B

Boki

Guest
A<=0


A input 0


but

what is A=>0?

A output to 0???

Boki.
 
my_vector <= (others => '0'); -- all bit will be '0'
-- or
my_vector <= (A => '1', others => '0'); -- output(A) bit will be '1',
other bits will be '0'

So 'A' explain an index. 'A' is an interger (or positive, or natural, ...).

Laurent Gauch
www.amontec.com
--------------------------------------
WE HAVE ONLINE VHDL MEMO. IT IS FREE
--------------------------------------






Boki wrote:
A<=0


A input 0


but

what is A=>0?

A output to 0???

Boki.
 
Got it!!
Thank you very much!

Regards,
Boki


Amontec Team <laurent.gauch@amontec.com> wrote in message news:<40890F85.8020409@amontec.com>...
my_vector <= (others => '0'); -- all bit will be '0'
-- or
my_vector <= (A => '1', others => '0'); -- output(A) bit will be '1',
other bits will be '0'

So 'A' explain an index. 'A' is an interger (or positive, or natural, ...).

Laurent Gauch
www.amontec.com
--------------------------------------
WE HAVE ONLINE VHDL MEMO. IT IS FREE
--------------------------------------






Boki wrote:
A<=0


A input 0


but

what is A=>0?

A output to 0???

Boki.
 

Welcome to EDABoard.com

Sponsor

Back
Top