about summary refs log tree commit diff stats
path: root/mu.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-24 00:20:02 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-24 00:20:02 -0700
commit016e788f08e520c1dd6caf5cbd6e2d626796997d (patch)
tree364305d7d2fbc6451588757ab31c999314d51d6c /mu.md
parent7da7e94720e1e90a1ea9f18ae423760c221f5637 (diff)
downloadmu-016e788f08e520c1dd6caf5cbd6e2d626796997d.tar.gz
.
Diffstat (limited to 'mu.md')
-rw-r--r--mu.md2
1 files changed, 2 insertions, 0 deletions
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