I am using CCSv5 IDE with tiva c series launchpad evaluation kit and recently need to run assembly code. I want to use it by the function asm(); but there is a error which is can't open .out file while debugging.
the code i'm executing is simple :
#include <stdint.h>
#include <stdbool.h>
int main(void)
{
while(1)
{
asm("ADD r0 r1 r0\n" );
}
}
and the vector table and cmd file are OK since I have tried other code and it ran successfully.
here is my project : https://www.dropbox.com/s/720oa64o04k2bvn/Copy%20of%20fibbonacci%2BCRC.rar?dl=0
help, thanks
Chin-po