aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-11 08:44:48 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-11 18:13:39 +0200
commitb90428658802f4aafb8c77e96937383f849bec34 (patch)
treefd6f71e128e9da1d34bd93b6692b3a736b992219
parentb48a354b9bb3a68c255aee53a6ea688356c99ddc (diff)
downloadghdl-b90428658802f4aafb8c77e96937383f849bec34.tar.gz
ghdl-b90428658802f4aafb8c77e96937383f849bec34.tar.bz2
ghdl-b90428658802f4aafb8c77e96937383f849bec34.zip
types: add fp32
-rw-r--r--src/types.ads1
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;