what the function MAKE_BINARY does in VHDL ? What its puprose?
Noa C. wrote: > what the function MAKE_BINARY does in VHDL ? Simply have a look in the source of the std_logic_arith package: https://www.csee.umbc.edu/portal/help/VHDL/packages/std_logic_arith_syn.vhd
1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
> What its puprose?
It takes the input vector and makes a '1' out of a '1' or a 'H", and it
makes a '0' out of a '0' and a 'L', all the rest will be changed to 'X'.
BTW: I recoomend NOT to use the old Synopsys std_logic_arith libs. Use
the numeric_std instead. It has all you will need.
Reply
Please log in before posting.