diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-02-23 14:42:22 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-02-23 14:42:22 -0800 |
commit | 08b9511af51c48042f167d83a4bdc38e32fe256b (patch) | |
tree | 5bf279b37fd92625fb9c8bbb15477c1504629002 | |
parent | aa1e2b4f5d97b2ac4f93edf0c1054daea918b83c (diff) | |
download | mu-08b9511af51c48042f167d83a4bdc38e32fe256b.tar.gz |
6053
-rwxr-xr-x | apps/mu | bin | 154340 -> 154343 bytes | |||
-rw-r--r-- | apps/mu.subx | 4 | ||||
-rw-r--r-- | apps/tests.subx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/mu b/apps/mu index 3a1fbac1..228884f6 100755 --- a/apps/mu +++ b/apps/mu Binary files differdiff --git a/apps/mu.subx b/apps/mu.subx index 574985d4..b2ab76e1 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -387,7 +387,7 @@ Type-id: # (stream (address array byte)) "addr"/imm32 # 2 "array"/imm32 # 3 "handle"/imm32 # 4 - "bool"/imm32 # 5 + "boolean"/imm32 # 5 0/imm32 0/imm32 # 0x20 @@ -4838,7 +4838,7 @@ Type-size: # (stream int) 4/imm32 # addr 0/imm32 # array (logic elsewhere) 8/imm32 # handle (fat pointer) - 4/imm32 # bool + 4/imm32 # boolean 0/imm32 0/imm32 # 0x20 diff --git a/apps/tests.subx b/apps/tests.subx index 62fc19d0..4ce8f315 100644 --- a/apps/tests.subx +++ b/apps/tests.subx @@ -69,7 +69,7 @@ $subx-tests-main:end: subx-gen-run-tests: # in: (addr buffered-file), out: (addr buffered-file) # pseudocode - # bool tests-found = false + # boolean tests-found = false # var line: (stream byte 512) # var new-code-segment: (handle stream byte) = new-stream(Segment-size, 1) # write(new-code-segment, "\n== code\n") |