aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-gates.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-09-30 20:58:09 +0200
committerTristan Gingold <tgingold@free.fr>2019-09-30 20:58:09 +0200
commit9aeab4488aef1a576d648ce2a14d3bc3a893f1e6 (patch)
treec8a871b6a44452b47bf4aecb88e3e328e1a9e595 /src/synth/netlists-gates.ads
parentfce1061ee2be3198b7fe323f15092f473ae53919 (diff)
downloadghdl-9aeab4488aef1a576d648ce2a14d3bc3a893f1e6.tar.gz
ghdl-9aeab4488aef1a576d648ce2a14d3bc3a893f1e6.tar.bz2
ghdl-9aeab4488aef1a576d648ce2a14d3bc3a893f1e6.zip
synth: improve support of * and /. Fix #953
Diffstat (limited to 'src/synth/netlists-gates.ads')
-rw-r--r--src/synth/netlists-gates.ads6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/synth/netlists-gates.ads b/src/synth/netlists-gates.ads
index 44afec700..f45313e10 100644
--- a/src/synth/netlists-gates.ads
+++ b/src/synth/netlists-gates.ads
@@ -35,8 +35,10 @@ package Netlists.Gates is
Id_Sub : constant Module_Id := 10;
Id_Umul : constant Module_Id := 11;
Id_Smul : constant Module_Id := 12;
- Id_Umod : constant Module_Id := 13;
- Id_Smod : constant Module_Id := 14;
+ Id_Udiv : constant Module_Id := 13;
+ Id_Sdiv : constant Module_Id := 14;
+ Id_Umod : constant Module_Id := 15;
+ Id_Smod : constant Module_Id := 16;
subtype Dyadic_Module_Id is Module_Id range Id_And .. Id_Smod;