hmw
Still Fresh
So I am trying to pick up things where this attempt to port Vincent to the gp2x left off. Looks like that the library was effectively compiled in debug mode, because the GCC configuration in the dev kit defines __arm__, but neither ARM nor _ARM_. Anyway, settings this enables the JIT, which brings up the next question:
On StrongARM-derived implementations as well as the XScale it is necessary to explicitly flush the code cache (which is separate from the data cache) after generating a code fragment before it can be executed. Is the same necessary for the CPU in the GP2X? [Anyone having a link do a good document?] If so, what's the equivalent of
on this box?
Thanx,
hm
On StrongARM-derived implementations as well as the XScale it is necessary to explicitly flush the code cache (which is separate from the data cache) after generating a code fragment before it can be executed. Is the same necessary for the CPU in the GP2X? [Anyone having a link do a good document?] If so, what's the equivalent of
Code:
CacheSync(CACHE_SYNC_INSTRUCTIONS | CACHE_SYNC_WRITEBACK);
Thanx,
hm
Last edited by a moderator: