pub fn load_words_from_memory_leave_pointer(
n: usize,
) -> Vec<LabelledInstruction>
Expand description
Return the code to read n
words from memory. Top of stack must point
to last word of words to read. Leaves mutated pointer on top of stack.
BEFORE: _ *last_word
AFTER: _ [loaded_words; n] (*first_word - 1)