aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-04-03 16:26:32 +0200
committerTristan Gingold <tgingold@free.fr>2020-04-06 20:10:54 +0200
commitac4a55b1eb20670b6b0d88f29e0bbf596d3d8830 (patch)
tree035694d95300d0ae67a02e58fb8737de0eeda496 /src/grt
parent77d71c72f10cb8a1779dfddcf2a5053c728300ec (diff)
downloadghdl-ac4a55b1eb20670b6b0d88f29e0bbf596d3d8830.tar.gz
ghdl-ac4a55b1eb20670b6b0d88f29e0bbf596d3d8830.tar.bz2
ghdl-ac4a55b1eb20670b6b0d88f29e0bbf596d3d8830.zip
grt-types: declare ghdl_u8.
Diffstat (limited to 'src/grt')
-rw-r--r--src/grt/grt-types.ads3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/grt/grt-types.ads b/src/grt/grt-types.ads
index 910c03589..0aa6dcc79 100644
--- a/src/grt/grt-types.ads
+++ b/src/grt/grt-types.ads
@@ -31,7 +31,8 @@ package Grt.Types is
pragma Preelaborate (Grt.Types);
type Ghdl_B1 is new Boolean;
- type Ghdl_E8 is new Unsigned_8;
+ type Ghdl_U8 is new Unsigned_8;
+ subtype Ghdl_E8 is Ghdl_U8;
type Ghdl_U32 is new Unsigned_32;
subtype Ghdl_E32 is Ghdl_U32;
type Ghdl_I32 is new Integer_32;