From 82e5fc7bf210aa3339ac347e921f4b941af7d827 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Tue, 2 Jul 2019 19:02:04 +0200 Subject: netlists-disp_vhdl: handle xor. --- src/synth/netlists-disp_vhdl.adb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') 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 => -- cgit v1.2.3