diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-03-07 08:06:53 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-03-07 08:06:53 +0100 |
commit | c5a2e37aaa5e8c9680135a06af8a0fa6d6c38956 (patch) | |
tree | 838d18f065271a6142bb61b5f6e2de81cbb42191 /src | |
parent | 3f8fb4d3c6c42b8d02165668c0eec44169485c8f (diff) | |
download | ghdl-c5a2e37aaa5e8c9680135a06af8a0fa6d6c38956.tar.gz ghdl-c5a2e37aaa5e8c9680135a06af8a0fa6d6c38956.tar.bz2 ghdl-c5a2e37aaa5e8c9680135a06af8a0fa6d6c38956.zip |
netlists-disp_vhdl: handle xnor. Fix #1153
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/netlists-disp_vhdl.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb index ac077f4a7..c1ce68c2e 100644 --- a/src/synth/netlists-disp_vhdl.adb +++ b/src/synth/netlists-disp_vhdl.adb @@ -1018,6 +1018,8 @@ package body Netlists.Disp_Vhdl is Disp_Template (" \o0 <= \i0 nor \i1;" & NL, Inst); when Id_Nand => Disp_Template (" \o0 <= \i0 nand \i1;" & NL, Inst); + when Id_Xnor => + Disp_Template (" \o0 <= \i0 xnor \i1;" & NL, Inst); when Id_Concat2 => declare |