B
Boki
Guest
A<=0
A input 0
but
what is A=>0?
A output to 0???
Boki.
A input 0
but
what is A=>0?
A output to 0???
Boki.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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.