From 016e788f08e520c1dd6caf5cbd6e2d626796997d Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 24 Oct 2021 00:20:02 -0700 Subject: [PATCH] . --- mu.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mu.md b/mu.md index f6702820..09e769fe 100644 --- a/mu.md +++ b/mu.md @@ -84,6 +84,8 @@ Types that require more than 32 bits (4 bytes) cannot be stored in registers: `T` here can be any type, including combinations of types. For example: - (array int) -- an array of ints - (addr int) -- an address to an int + - (addr array byte) -- an address to an array of bytes, useful for Unicode + text strings - (handle int) -- a handle to an int - (addr handle int) -- an address to a handle to int - (addr array handle int) -- an address to an array of handles to ints