Other Parts Discussed in Thread: HALCOGEN
Tool/software:
HI,
I am using HET IDE to generate my own N2HET code. When I assembly N2HET assembly code, it generate C and H files with instruction array defined as below
HET_MEMORY const HET_INIT0_PST[58] =
{
...........
...........
};
Whereas in hetInit function in HL_het.c file generated by Halcogen expects HET_INIT1_PST as shown below. Is there a way to ensure both are same instead of manually editing the file name everytime we assemble?
(void)memcpy((void*)hetRAM2, (void*)HET_INIT1_PST, sizeof(HET_INIT1_PST));
Thanks,
Ravi