diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-11-17 01:06:43 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-11-17 01:06:43 -0800 |
commit | 78d2754276d5e4d069cb6c5bab51c7f8aae346b4 (patch) | |
tree | 6ab83be250856eca672ed9a2c252d580d20cdfb8 | |
parent | 18579f77c62b8e7f483fc24e07fcdfe5bcd8cbac (diff) | |
download | mu-78d2754276d5e4d069cb6c5bab51c7f8aae346b4.tar.gz |
7254
-rw-r--r-- | 302stack_allocate.subx | 4 | ||||
-rw-r--r-- | 308allocate-array.subx | 1 | ||||
-rw-r--r-- | 310copy-bytes.subx | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/302stack_allocate.subx b/302stack_allocate.subx index 4634039d..cd51d5ff 100644 --- a/302stack_allocate.subx +++ b/302stack_allocate.subx @@ -1,6 +1,6 @@ # A function which pushes n zeros on the stack. -# Not really useful to call manually. -# The Mu compiler uses it when defining arrays on the stack. +# Really only intended to be called from code generated by mu.subx (for array +# vars on the stack). == code diff --git a/308allocate-array.subx b/308allocate-array.subx index c243ee33..5cc0fe1b 100644 --- a/308allocate-array.subx +++ b/308allocate-array.subx @@ -1,4 +1,5 @@ # 2-arg version of allocate-array. +# Really only intended to be called from code generated by mu.subx. == code diff --git a/310copy-bytes.subx b/310copy-bytes.subx index 176c4c33..2586a53f 100644 --- a/310copy-bytes.subx +++ b/310copy-bytes.subx @@ -1,4 +1,5 @@ -# Fill a region of memory with zeroes. +# Some helpers for copying non-overlapping regions of memory. +# Really only intended to be called from code generated by mu.subx. == code |