Hi, I have few questions on how to write the assembly code in cla.
1. How to define initialized data?
My example:
.sect "Cla0Data"
_CLASineTable:
.float 0.0
.float 0.1
...
_CLASineTableEnd:
Am I right? As they are in Ram, Does it work every time 28035 power up?
2. How to get the value in the CLASineTable?
I want to do the this: ResultA = 1000.0 * CLASineTable[Count];
But I do not know how to get the value of CLASineTable[Count] using the cla assembly ?
Thanks a lot.