I'm trying to write a memory test program for the NXT, since I have several with burned memory cells and would like to identify which NXTs are unusable. This program is intended to test each byte in memory for integrity by:
- Allocating 64 bits to an Linear Feedback Shift Register randomizer
- Adding another byte to a memory pointer
- Writing random data to the selected memory cell
- Verifying the data is read back correctly
However, I then discovered through these attempts that the NXT doesn't actually support pointer operations. Thus, I can't simply iterate the pointer byte and read its location to test.
How do I go about iterating over indexes in memory without pointers?
Not eXactly C (NXC). Unfortunately, at an assembly level, pointers aren't supported, so this is what I've got to deal with. – Knights who say Ni Jan 19 at 0:42