Tool/software: Code Composer Studio
Program was working fine, but when i changed something there it crashes at some point. The problem seems to be memset... do I need to include it in the memory, if yes why was it working before?
Somewhere in the main method:
...
uint8_t data[8] = {0}; 0800 8E8C MOV R1, #0x00 0800 8E90 ADD R0, SP, #0x18 0800 8E94 MOV R2, #0x08 0800 8E98 BL 0x08009018
when you step into it you get the following:
$ARM 0800 9018 LDR R12, =memset ; [0x08009020] =0x000200C3 0800 901c BX R12
and it jumps into undefEntry and crashes.