Tool/software:
HI,
I'm trying to trigger "INT_USER1" with Trap Assembly command, instead getting some error.
Can anyone tell me what have i done wrong, from below code?

This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
HI,
I'm trying to trigger "INT_USER1" with Trap Assembly command, instead getting some error.
Can anyone tell me what have i done wrong, from below code?

Hi Shubham,
Use the below instead :
asm(" TRAP #20");
You need space after the " double quotes. Please see how other assembly instructions are used in the driverlib for examples.
Thanks