Other Parts Discussed in Thread: HALCOGEN, TMS570LS3137
I want to put the instructions (PCNT, BRANCH) which the HET IDE so kindly generated into the RAM so that the HET will carry out my algorithm.
I can't just include the .c and .h files that the HET IDE generated because the std_het.h library isn't included.
Andd I can't include the std_het.h library because it apparently conflicts with the libraries generated by HALCOGEN.
So, how do I put a few words like this..(PCNT, BRANCH)..
//The header will probably be necessary as well.
// Is there a different library I can use to replace std_het.h?
#include "std_het.h"
HET_MEMORY HET_INIT0_PST[2] =
{
/* L01_0 */
{
0x00001768,
0x00000000,
0x00000000,
0x00000000
},
/* L02_0 */
{
0x00000D00,
0x00000000,
0x00000000,
0x00000000
}
};
// INTO THE HET MEMORY LOCATION?