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 883f181cf..9464eba5d 100644 --- a/src/synth/netlists-disp_vhdl.adb +++ b/src/synth/netlists-disp_vhdl.adb @@ -582,6 +582,8 @@ package body Netlists.Disp_Vhdl is null; when Id_Not => Disp_Template (" \o0 <= not \i0;" & NL, Inst); + when Id_Neg => + Disp_Template (" \o0 <= std_logic_vector(-\si0);" & NL, Inst); when Id_Extract => Disp_Template (" \o0 <= ", Inst); Disp_Extract (Inst); |