View Single Post
Old 12-16-2011, 12:48 PM   #14
IXix
Human being with feelings
 
Join Date: Jan 2007
Location: mcr:uk
Posts: 3,891
Default

Looks to me like your offsets are, well, off. The start offset of each 'array' should be the base address of previous 'array' plus it's size...

Code:
memtest1 = 0;
memtest2 = memtest1 + 3;
memtest3 = memtest2 + 6;
Does that do what you're expecting?

edit: DarkStar types faster than I do
IXix is offline   Reply With Quote