diff options
Diffstat (limited to 'src/synth/synth-ieee-numeric_std.ads')
-rw-r--r-- | src/synth/synth-ieee-numeric_std.ads | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/synth/synth-ieee-numeric_std.ads b/src/synth/synth-ieee-numeric_std.ads index 82e431584..69ebaae1a 100644 --- a/src/synth/synth-ieee-numeric_std.ads +++ b/src/synth/synth-ieee-numeric_std.ads @@ -49,9 +49,12 @@ package Synth.Ieee.Numeric_Std is -- "-" function Sub_Uns_Uns (L, R : Memtyp; Loc : Syn_Src) return Memtyp; + function Sub_Uns_Nat (L : Memtyp; R : Uns64; Loc : Syn_Src) return Memtyp; + function Sub_Nat_Uns (L : Uns64; R : Memtyp; Loc : Syn_Src) return Memtyp; + function Sub_Sgn_Sgn (L, R : Memtyp; Loc : Syn_Src) return Memtyp; function Sub_Sgn_Int (L : Memtyp; R : Int64; Loc : Syn_Src) return Memtyp; - function Sub_Uns_Nat (L : Memtyp; R : Uns64; Loc : Syn_Src) return Memtyp; + function Sub_Int_Sgn (L : Int64; R : Memtyp; Loc : Syn_Src) return Memtyp; -- "*" function Mul_Uns_Uns (L, R : Memtyp; Loc : Syn_Src) return Memtyp; |