Reply by May 28, 19991999-05-28

When i am using code composer simulator and try to write to a
specific address i get an error messages. Can anyone tell me what i am doing
wrong. I've already contacted TI and Go-DSP but I'm still waiting for an answer.

I think it is in some of the settings, I am new to the TI tooling.
The messagse are:

Can't single step target program
Trouble running target DSP
can't run target DSP

Follewd by the error number -1
and address 0
Reserved memory access The test programm i tried to do this whith looks like this:

void main ( void )
{
unsigned int *ip;

ip = (unsigned int *)0x01780000;
*ip = *ip+0xA;
}