This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to nest svc (svcall) on Cortex-M3 ?

How to nest svc, eg

void svcall_handler(){
     if(smth_happened()){
          asm volatile("svc #0");
     }
}

Thanks.