This commit is contained in:
Kartik Agaram 2020-11-17 01:06:43 -08:00
parent 18579f77c6
commit 78d2754276
3 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -1,4 +1,5 @@
# 2-arg version of allocate-array.
# Really only intended to be called from code generated by mu.subx.
== code

View File

@ -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