From 9b1e128e8cac7f8cf5259f409b9b2c024cf457bf Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sun, 20 Sep 2020 08:44:17 +0200 Subject: synth-disp_vhdl: extend vector conversions (for any range). For #1460 --- src/synth/synth-disp_vhdl.adb | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/synth/synth-disp_vhdl.adb b/src/synth/synth-disp_vhdl.adb index e9e99fa6f..4fb144e12 100644 --- a/src/synth/synth-disp_vhdl.adb +++ b/src/synth/synth-disp_vhdl.adb @@ -37,10 +37,22 @@ with Synth.Objtypes; use Synth.Objtypes; package body Synth.Disp_Vhdl is procedure Disp_Signal (Desc : Port_Desc) is begin + if Desc.W > 1 then + Put (" subtype typ"); + Put_Name (Desc.Name); + Put (" is "); + Put_Type (Desc.W); + Put_Line (";"); + end if; Put (" signal "); Put_Name (Desc.Name); Put (": "); - Put_Type (Desc.W); + if Desc.W > 1 then + Put ("typ"); + Put_Name (Desc.Name); + else + Put_Type (Desc.W); + end if; Put_Line (";"); end Disp_Signal; @@ -160,7 +172,13 @@ package body Synth.Disp_Vhdl is W := Typ.Vbound.Len; Disp_In_Lhs (Mname, Off, W, Full); if W > 1 then - Put ("std_logic_vector("); + if Full then + Put ("typwrap_"); + Put (Mname); + else + Put ("std_logic_vector"); + end if; + Put ("("); end if; Put (Pfx); if W = 1 then -- cgit v1.2.3