diff options
Diffstat (limited to 'src/synth/netlists-disp_vhdl.adb')
-rw-r--r-- | src/synth/netlists-disp_vhdl.adb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb index f12dd7811..139b2c0d0 100644 --- a/src/synth/netlists-disp_vhdl.adb +++ b/src/synth/netlists-disp_vhdl.adb @@ -598,6 +598,12 @@ package body Netlists.Disp_Vhdl is when Id_Ule => Disp_Template (" \o0 <= '1' when \ui0 <= \ui1 else '0';" & NL, Inst); + when Id_Ugt => + Disp_Template (" \o0 <= '1' when \ui0 > \ui1 else '0';" & NL, + Inst); + when Id_Uge => + Disp_Template (" \o0 <= '1' when \ui0 >= \ui1 else '0';" & NL, + Inst); when Id_Eq => Disp_Template (" \o0 <= '1' when \i0 = \i1 else '0';" & NL, Inst); when Id_Ne => |