about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-27 23:14:18 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-27 23:14:18 -0700
commit64a39b29eb2186a1d9fb00a2bd8701ae9d0c0c1d (patch)
tree75893509cdb7d4c9a8739cf3e82c5b59d40bccc0
parent91e6ebcf51db0a38d96eaf3b62bfe94628c58ab0 (diff)
downloadmu-64a39b29eb2186a1d9fb00a2bd8701ae9d0c0c1d.tar.gz
6891
-rw-r--r--apps/mu.subx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mu.subx b/apps/mu.subx
index 12fd7f0d..5e3fe050 100644
--- a/apps/mu.subx
+++ b/apps/mu.subx
@@ -409,7 +409,6 @@ Type-id:  # (stream (addr array byte))
            # Not to be used directly, so we don't include a name here.
   0/imm32  # 10 reserved for type parameters; value is (address array byte) in Type-tree-value2.
            # Not to be used directly, so we don't include a name here.
-  # some SubX types deliberately left undefined in Mu; they can only be operated on using SubX primitives
   "stream"/imm32  # 11
   "slice"/imm32  # 12
   "code-point"/imm32  # 13; smallest scannable unit from a text stream
@@ -418,6 +417,7 @@ Type-id:  # (stream (addr array byte))
                     # unclear how we should deal with larger clusters.
   # Keep Primitive-type-ids in sync if you add types here.
                                                           0/imm32
+  # 0x30
   0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32
   0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32
   0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32 0/imm32
'>148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247