__attribute__( ( naked, noreturn ) ) void BootJumpASM( uint32_t SP, uint32_t RH ) { __asm("MSR MSP,r0"); __asm("BX r1"); } void BootJump(uint32_t *Address) { DEBUGPRINT("Boot Jump\r\n"); if( CONTROL_nPRIV_Msk & __get_CONTROL( ) ){ /* not in privileged mode */ } // 2. NVIC 인터럽트 초기화 for (int i = 0; i NVIC->ICER[i] = 0xFFFFFFFF; NVIC->ICPR[i] = 0xFFFFFFFF; } SysTick->CTRL = 0 ; SCB-..