diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-08-02 11:42:59 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-08-02 11:42:59 -0700 |
commit | 7d33cce06956614cf4a4a01f4a362dc097eea647 (patch) | |
tree | 45dbe4af1d324f75586bfd7543ada021a9829fde | |
parent | 902b4084af04a7bcf36a6a9971b4661bd97c2139 (diff) | |
download | mu-7d33cce06956614cf4a4a01f4a362dc097eea647.tar.gz |
6701
-rwxr-xr-x | apps/mu | bin | 368786 -> 368763 bytes | |||
-rw-r--r-- | apps/mu.subx | 6 |
2 files changed, 4 insertions, 2 deletions
diff --git a/apps/mu b/apps/mu index cc38f6d7..3e28e763 100755 --- a/apps/mu +++ b/apps/mu Binary files differdiff --git a/apps/mu.subx b/apps/mu.subx index d40e48e9..76e61243 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -393,13 +393,15 @@ Type-id: # (stream (addr array byte)) 0/imm32/read 0x100/imm32/size # data - "literal"/imm32 # 0: value is just the name + 0/imm32 # 0 reserved for literals; value is just the name + # Not to be used directly, so we don't include a name here. "int"/imm32 # 1 "addr"/imm32 # 2 "array"/imm32 # 3 "handle"/imm32 # 4 "boolean"/imm32 # 5 - "constant"/imm32 # 6: like a literal, but value is an int in Var-offset + 0/imm32 # 6 reserved for constants; they're like literals, but value is an int in Var-offset + # Not to be used directly, so we don't include a name here. "offset"/imm32 # 7: (offset T) is guaranteed to be a 32-bit multiple of size-of(T) # 0x20 "byte"/imm32 # 8 |