mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 03:20:56 +11:00
f6ded7712e
This is the first commit I do entirely in VE. It's a habit I'm planning on taking as it helps a lot to find usability issues.
17 lines
536 B
Plaintext
17 lines
536 B
Plaintext
CURRENT* -- a A pointer to active CURRENT*. Useful
|
|
when we have multiple active dicts.
|
|
FILL a n b -- Fill n bytes at addr a with val b.
|
|
HERE -- a Push HERE's address
|
|
H@ -- a HERE @
|
|
MOVE a1 a2 u -- Copy u bytes from a1 to a2, starting
|
|
with a1, going up.
|
|
MOVE- a1 a2 u -- Copy u bytes from a1 to a2, starting
|
|
with a1+u, going down.
|
|
MOVE, a u -- Copy u bytes from a to HERE.
|
|
|
|
|
|
|
|
|
|
|
|
|