From e422079fcced744e3a6247aeb12a09a658989072 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 15 Sep 2024 15:33:47 -0400 Subject: Add a Byte datatype --- types.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'types.h') diff --git a/types.h b/types.h index 8b1ded4a..46469c65 100644 --- a/types.h +++ b/types.h @@ -43,6 +43,7 @@ struct type_s { VoidType, MemoryType, BoolType, + ByteType, BigIntType, IntType, NumType, @@ -72,6 +73,7 @@ struct type_s { struct { enum { TYPE_IBITS8=8, TYPE_IBITS16=16, TYPE_IBITS32=32, TYPE_IBITS64=64 } bits; } IntType; + struct {} ByteType; struct { enum { TYPE_NBITS32=32, TYPE_NBITS64=64 } bits; } NumType; -- cgit v1.2.3