can you please explain that how logic vector array works there i mean
syntax of
a : in STD_LOGIC_VECTOR (3 downto 0);
this is a port declaration, consisting of
a
- the name of the port
in
- its direction - it supplies a signal into this entity
STD_LOGIC_VECTOR
- its type (roughly, an array of bits)
(3 downto 0)
its index type (4 integers in a descending range)
;
- a separator before the next declaration.
It's not clear from the question, what you don't understand.
the operator =>
Is not really an operator, you can't overload it for example - it's an association, associating (in a case statement) the case value on the left with the case action on the right.
You'll also see it associating parameter names with parameter values in argument lists, port maps, etc.
2- what is difference between 4 bit behavioral alu and 4 bit verdict
multiplier
One can add, the other can multiply. Though I've never heard of a "verdict" multiplier.