aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth')
-rw-r--r--src/synth/netlists-disp_vhdl.adb6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb
index 41c32eeaa..2348f669b 100644
--- a/src/synth/netlists-disp_vhdl.adb
+++ b/src/synth/netlists-disp_vhdl.adb
@@ -940,6 +940,12 @@ package body Netlists.Disp_Vhdl is
when Id_Srem =>
Disp_Template
(" \o0 <= std_logic_vector (\si0 rem \si1);" & NL, Inst);
+ when Id_Sdiv =>
+ Disp_Template
+ (" \o0 <= std_logic_vector (\si0 / \si1);" & NL, Inst);
+ when Id_Udiv =>
+ Disp_Template
+ (" \o0 <= std_logic_vector (\ui0 / \ui1);" & NL, Inst);
when Id_Lsl =>
Disp_Template
(" \o0 <= std_logic_vector "