I have a basic question. I have a test c code in which I have a buffer that I want to be aligned at a particular address. How do I do that. Here is the snippet of the code
void TestFn (void)
{
unsigned long xmt[80];. // This buffer need to be placed at 128 byte boundary.....How to achieve this???
.
.
.}