diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-02-09 07:53:57 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-02-09 07:53:57 +0100 |
commit | d1ff79789a621a485aeb4c854ce136c9f6a8ff70 (patch) | |
tree | 23a7ce595c0b7e3e025583ed8dcadd9e91f669cc /src/synth/synth-ieee-std_logic_arith.ads | |
parent | 7a0759479a991ab9ec1e2716f34b738a0286fa9a (diff) | |
download | ghdl-d1ff79789a621a485aeb4c854ce136c9f6a8ff70.tar.gz ghdl-d1ff79789a621a485aeb4c854ce136c9f6a8ff70.tar.bz2 ghdl-d1ff79789a621a485aeb4c854ce136c9f6a8ff70.zip |
synth-vhdl_eval: handle std_logic_arith.conv_std_logic_vector
Fix #2347
Diffstat (limited to 'src/synth/synth-ieee-std_logic_arith.ads')
-rw-r--r-- | src/synth/synth-ieee-std_logic_arith.ads | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/synth/synth-ieee-std_logic_arith.ads b/src/synth/synth-ieee-std_logic_arith.ads index 0c8d400f0..c4956c320 100644 --- a/src/synth/synth-ieee-std_logic_arith.ads +++ b/src/synth/synth-ieee-std_logic_arith.ads @@ -67,4 +67,10 @@ package Synth.Ieee.Std_Logic_Arith is function Compare_Sgn_Int (L : Memtyp; R : Int64; Loc : Location_Type) return Order_Type; + -- Conversion from signed/unsigned to std_logic_vector. + function Conv_Slv (Arg : Memtyp; + Size : Uns32; + Signed : Boolean; + Loc : Location_Type) return Memtyp; + end Synth.Ieee.Std_Logic_Arith; |