Hello all,
My G30 application works fine using large collections of arrays and structs but I want to go smaller and faster.
I do not need the extra memory used to reference my arrays because my program essentially just computes what the next element to run through a short process should be. So instead I would have small arrays holding a few key memory addresses needed to compute which of many many memory addresses I need. No need to store every address used because the data is continuous in nature with a few options to branch around.
So the question: Is it possible for me to accesses memory directly in a word aligned manner on the G30?
Thank you Kindly