diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-09-28 18:26:23 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-09-28 18:26:23 +0200 |
commit | fb2f80bacac9285970b6b406563a1d6495e3bb67 (patch) | |
tree | 12b2b7a208c420d50d41bf0ea773175395ae34f1 | |
parent | 67ceca184370d91ce8c08289f21e54de8536311d (diff) | |
download | ghdl-fb2f80bacac9285970b6b406563a1d6495e3bb67.tar.gz ghdl-fb2f80bacac9285970b6b406563a1d6495e3bb67.tar.bz2 ghdl-fb2f80bacac9285970b6b406563a1d6495e3bb67.zip |
netlists-disp_verilog: fix name for memory initialization
-rw-r--r-- | src/synth/netlists-disp_verilog.adb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/synth/netlists-disp_verilog.adb b/src/synth/netlists-disp_verilog.adb index e930054d7..efcf8b087 100644 --- a/src/synth/netlists-disp_verilog.adb +++ b/src/synth/netlists-disp_verilog.adb @@ -381,7 +381,8 @@ package body Netlists.Disp_Verilog is Put (Bchar (Zx * 2 + Val)); end Disp_Const_Bit; - procedure Disp_Memory_Init (Port : Net; Val : Net; W : Width; Depth : Width) + procedure Disp_Memory_Init + (Mem : Instance; Val : Net; W : Width; Depth : Width) is Inst : constant Instance := Get_Net_Parent (Val); begin @@ -395,7 +396,7 @@ package body Netlists.Disp_Verilog is Put_Line (" initial begin"); for I in reverse 0 .. Depth - 1 loop Put (" "); - Disp_Net_Name (Port); + Put_Name (Get_Instance_Name (Mem)); Put ("["); Put_Uns32 (I); Put ("] = "); @@ -701,7 +702,7 @@ package body Netlists.Disp_Verilog is if Get_Id (Val_Inst) = Id_Isignal then Val := Get_Input_Net (Val_Inst, 1); end if; - Disp_Memory_Init (Ports, Val, Data_W, Depth); + Disp_Memory_Init (Mem, Val, Data_W, Depth); end; end if; |