aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-disp_vhdl.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-03-22 08:21:04 +0100
committerTristan Gingold <tgingold@free.fr>2020-03-22 08:21:36 +0100
commite3bac06b441a7e5b95b0a0f662c5e0fce8f57d3c (patch)
treeb9e6def1e57a6380aee8662d7db41d370874aff2 /src/synth/netlists-disp_vhdl.adb
parent2eef024e6d1e59778c07e6ccc353c7fb96fb8bc5 (diff)
downloadghdl-e3bac06b441a7e5b95b0a0f662c5e0fce8f57d3c.tar.gz
ghdl-e3bac06b441a7e5b95b0a0f662c5e0fce8f57d3c.tar.bz2
ghdl-e3bac06b441a7e5b95b0a0f662c5e0fce8f57d3c.zip
netlists: add id_nop gate.
Diffstat (limited to 'src/synth/netlists-disp_vhdl.adb')
-rw-r--r--src/synth/netlists-disp_vhdl.adb2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb
index 423a9ed96..f4e8e49f7 100644
--- a/src/synth/netlists-disp_vhdl.adb
+++ b/src/synth/netlists-disp_vhdl.adb
@@ -763,6 +763,8 @@ package body Netlists.Disp_Vhdl is
Disp_Template (" \o0 <= \i0; -- (isignal)" & NL, Inst);
when Id_Port =>
Disp_Template (" \o0 <= \i0; -- (port)" & NL, Inst);
+ when Id_Nop =>
+ Disp_Template (" \o0 <= \i0; -- (nop)" & NL, Inst);
when Id_Not =>
Disp_Template (" \o0 <= not \i0;" & NL, Inst);
when Id_Neg =>