diff options
Diffstat (limited to 'src/grt')
-rw-r--r-- | src/grt/grt-types.ads | 3 |
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; |