aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-ieee-numeric_std.ads
diff options
context:
space:
mode:
authorbwimm <be.wimm@gmail.com>2020-04-07 21:05:32 +0200
committerGitHub <noreply@github.com>2020-04-07 21:05:32 +0200
commit921e989f6e638cd655835040839b2c003385ec38 (patch)
tree5fc93437e27dd433733cb29de2045d51af5e6d62 /src/synth/synth-ieee-numeric_std.ads
parentdd36b3a7c22edeb73a821b1cd9f43c997920b3ef (diff)
downloadghdl-921e989f6e638cd655835040839b2c003385ec38.tar.gz
ghdl-921e989f6e638cd655835040839b2c003385ec38.tar.bz2
ghdl-921e989f6e638cd655835040839b2c003385ec38.zip
synth-static_oper: handle mul uns nat. (#1200)
Diffstat (limited to 'src/synth/synth-ieee-numeric_std.ads')
-rw-r--r--src/synth/synth-ieee-numeric_std.ads2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/synth-ieee-numeric_std.ads b/src/synth/synth-ieee-numeric_std.ads
index f0004c846..7e85f04a0 100644
--- a/src/synth/synth-ieee-numeric_std.ads
+++ b/src/synth/synth-ieee-numeric_std.ads
@@ -42,6 +42,8 @@ package Synth.Ieee.Numeric_Std is
function Mul_Uns_Uns (L, R : Std_Logic_Vector) return Std_Logic_Vector;
function Mul_Nat_Uns (L : Uns64; R : Std_Logic_Vector)
return Std_Logic_Vector;
+ function Mul_Uns_Nat (L : Std_Logic_Vector; R : Uns64)
+ return Std_Logic_Vector;
function Mul_Sgn_Sgn (L, R : Std_Logic_Vector) return Std_Logic_Vector;
end Synth.Ieee.Numeric_Std;