Currently, the Fx65 instruction will load the number of registers specified by x into the memory space pointed to by index. The index register is then post-incremented by the number of registers loaded (or not, depending on which quirk mode is activated).
The XO Chip specification calls for a subset load command as follows:
Fxy3
This will load a subset of registers from memory space pointed to by index starting in register x and ending in register y. Note that the index is not post-incremented. If x is larger than y - for example x=6 and y=2 - then registers are loaded from memory in reverse order (e.g. 6, 5, 4, 3, 2). The registers are include the start and end registers.
Currently, the
Fx65
instruction will load the number of registers specified byx
into the memory space pointed to byindex
. Theindex
register is then post-incremented by the number of registers loaded (or not, depending on which quirk mode is activated).The XO Chip specification calls for a subset load command as follows:
This will load a subset of registers from memory space pointed to by
index
starting in registerx
and ending in registery
. Note that theindex
is not post-incremented. Ifx
is larger thany
- for examplex
=6 andy
=2 - then registers are loaded from memory in reverse order (e.g. 6, 5, 4, 3, 2). The registers are include the start and end registers.