diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-11 08:44:48 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-11 18:13:39 +0200 |
commit | b90428658802f4aafb8c77e96937383f849bec34 (patch) | |
tree | fd6f71e128e9da1d34bd93b6692b3a736b992219 | |
parent | b48a354b9bb3a68c255aee53a6ea688356c99ddc (diff) | |
download | ghdl-b90428658802f4aafb8c77e96937383f849bec34.tar.gz ghdl-b90428658802f4aafb8c77e96937383f849bec34.tar.bz2 ghdl-b90428658802f4aafb8c77e96937383f849bec34.zip |
types: add fp32
-rw-r--r-- | src/types.ads | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/types.ads b/src/types.ads index 71b981647..fb13bf8a7 100644 --- a/src/types.ads +++ b/src/types.ads @@ -42,6 +42,7 @@ package Types is type Uns64 is new Interfaces.Unsigned_64; type Fp64 is new Interfaces.IEEE_Float_64; + type Fp32 is new Interfaces.IEEE_Float_32; -- Useful types. type String_Acc is access String; |