diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-01-11 17:26:57 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-01-12 09:15:37 +0100 |
commit | 2448cf3ff2f3b723fdece48c953a9f4c9b585570 (patch) | |
tree | 38a83c6f3c793ea59eb0d2be7fb889cfb40beddc /src | |
parent | 10e80c41ce55821a41f2304a6158949ac78c59e8 (diff) | |
download | ghdl-2448cf3ff2f3b723fdece48c953a9f4c9b585570.tar.gz ghdl-2448cf3ff2f3b723fdece48c953a9f4c9b585570.tar.bz2 ghdl-2448cf3ff2f3b723fdece48c953a9f4c9b585570.zip |
netlists-disp_vhdl: handle one bit memories. Fix #1083
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/netlists-disp_vhdl.adb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb index 2348f669b..cf138b6d5 100644 --- a/src/synth/netlists-disp_vhdl.adb +++ b/src/synth/netlists-disp_vhdl.adb @@ -661,8 +661,12 @@ package body Netlists.Disp_Vhdl is -- Declare the memory. Disp_Template (" type \o0_type is array (0 to \n0)" & NL, Mem, (0 => Depth - 1)); - Disp_Template (" of std_logic_vector (\n0 downto 0);" & NL, - Mem, (0 => Data_W - 1)); + if Data_W = 1 then + Disp_Template (" of std_logic;" & NL, Mem); + else + Disp_Template (" of std_logic_vector (\n0 downto 0);" & NL, + Mem, (0 => Data_W - 1)); + end if; Disp_Template (" variable \o0 : \o0_type", Mem); if Get_Id (Mem) = Id_Memory_Init then declare |