From 043feed5c0f35642d29ba8a2b720eefc61510e62 Mon Sep 17 00:00:00 2001 From: ax-6 Date: Sun, 7 Jul 2024 19:40:30 +0800 Subject: [PATCH] Updated the types.h in Aqvm. --- aqvm/memory/types.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aqvm/memory/types.h b/aqvm/memory/types.h index 098b3f1..3278d1c 100644 --- a/aqvm/memory/types.h +++ b/aqvm/memory/types.h @@ -22,8 +22,10 @@ typedef double aqdouble; typedef uint8_t aqchar; // 0x06 typedef bool aqbool; +// 0x07 +typedef uint8_t aqbyte; -// Portions exceeding 0x06 and falling within the range 0x0F are currently +// Portions exceeding 0x07 and falling within the range 0x0F are currently // designated as reserved types. Portions extending beyond 0x0F cannot be // utilised without exceeding the 4-bit size limit.