diff options
Diffstat (limited to 'src/synth/synth-ieee-std_logic_1164.ads')
-rw-r--r-- | src/synth/synth-ieee-std_logic_1164.ads | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/synth/synth-ieee-std_logic_1164.ads b/src/synth/synth-ieee-std_logic_1164.ads index 20ebe4be1..a81947c54 100644 --- a/src/synth/synth-ieee-std_logic_1164.ads +++ b/src/synth/synth-ieee-std_logic_1164.ads @@ -55,6 +55,9 @@ package Synth.Ieee.Std_Logic_1164 is function To_Bit (S : Std_Ulogic; Xmap : Bit) return Bit; + type Table_Bit_Log_Type is array (Bit) of Std_Ulogic; + Bit2log_Table : Table_Bit_Log_Type := ('0', '1'); + type Table_1d is array (Std_Ulogic) of Std_Ulogic; type Table_2d is array (Std_Ulogic, Std_Ulogic) of Std_Ulogic; |