| Node | Description |
|---|---|
| main | No description |
| buffer1 | Creates a buffer with the specified number of bytes. |
| set-byte | Places the specified byte in the buffer at location "i". |
| get-byte | Outputs the byte at the specified number "i" from the buffer. |
| set-word | Places the specified word in the buffer at position "i". |
| get-word | Outputs the word at the specified number "i" from the buffer. |
| length | Shows the number of bytes in the buffer.
|
| print-char-buffer1 | Outputs the contents of the buffer to a string. (At the same time, bytes will be character addresses.) |
| shift-right-buffer1 | Shifts the contents of the buffer by a byte to the right. |
| shift-left-buffer1 | Shifts the contents of the buffer by a byte to the left. |
| fill-buffer1 | Fills the buffer with the specified byte.
|