Hi there,
Compiler: TI v4.9.1 (ARM9)
Initialization model: -c
Target OS: non-Linux RTOS
Problem: how to have following fooA.b and fooB.b reset to 0 by RTS loader without increasing the ROM image size drastically (<=256 bytes) ?
------------- code slice begin ---------------------------
typedef struct
{
int a, b[1024];
}TFoo;
Foo fooA = { .a = 3 };
const Foo fooB = { .a = 5 };
------------- code slice end ---------------------------
Thanks & regards,
Yulin.