1
0
mirror of https://github.com/openpower-cores/a2i.git synced 2026-01-13 07:19:50 +00:00

add attribute decls

This commit is contained in:
wtf 2020-07-14 20:10:57 -04:00
parent 826e092f03
commit f270a43654

View File

@ -22,6 +22,18 @@ use ieee.numeric_std.all ;
package std_ulogic_support is
attribute like_builtin: boolean;
attribute dc_allow: boolean;
attribute type_convert: boolean;
attribute recursive_synthesis: boolean;
attribute functionality: string;
attribute btr_name: string;
attribute block_data: string;
type pbi_el_t is array(0 to 3) of string;
type pbi_t is array(integer range <>) of pbi_el_t;
attribute pin_bit_information: pbi_t;
attribute dynamic_block_data: string;
type base_t is ( bin, oct, dec, hex );
-------------------------------------------------------------------