Been getting this error message when I run MemoryTest
I suspect there's something wrong with my Memory.init() method, I basically set up 3 static Array variables, RAM, head and heap, with the following initialization:
RAM = 0
head = 2048 // head of the memory segments linked list
heap = 2048
heap[0] = -31416
heap[1] = 14334
Wondering if someone can give me some hints, thanks!