diff options
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 0b86f1b9c..bf53b4d1d 100644 --- a/src/synth/netlists-disp_vhdl.adb +++ b/src/synth/netlists-disp_vhdl.adb @@ -578,6 +578,8 @@ package body Netlists.Disp_Vhdl is Disp_Template (" \o0 <= \i0 or \i1;" & NL, Inst); when Id_And => Disp_Template (" \o0 <= \i0 and \i1;" & NL, Inst); + when Id_Xor => + Disp_Template (" \o0 <= \i0 xor \i1;" & NL, Inst); when Id_Concat2 => Disp_Template (" \o0 <= \i0 & \i1;" & NL, Inst); when Id_Concat3 => |