From f270a436542026d1d95e82659078efbe0b4c90a2 Mon Sep 17 00:00:00 2001 From: wtf Date: Tue, 14 Jul 2020 20:10:57 -0400 Subject: [PATCH] add attribute decls --- rel/src/vhdl/ibm/std_ulogic_support.vhdl | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/rel/src/vhdl/ibm/std_ulogic_support.vhdl b/rel/src/vhdl/ibm/std_ulogic_support.vhdl index 269572c..fd7d1b6 100644 --- a/rel/src/vhdl/ibm/std_ulogic_support.vhdl +++ b/rel/src/vhdl/ibm/std_ulogic_support.vhdl @@ -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 ); -------------------------------------------------------------------