aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/synth/netlists-disp_verilog.adb5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/synth/netlists-disp_verilog.adb b/src/synth/netlists-disp_verilog.adb
index baa9db2c0..848adc05b 100644
--- a/src/synth/netlists-disp_verilog.adb
+++ b/src/synth/netlists-disp_verilog.adb
@@ -1328,6 +1328,11 @@ package body Netlists.Disp_Verilog is
is
Self_Inst : constant Instance := Get_Self_Instance (M);
begin
+ if Self_Inst = No_Instance then
+ -- Blackbox
+ return;
+ end if;
+
-- Module id and name.
Put ("module ");
Put_Name (Get_Module_Name (M));