bb230de72c
Refactored the exception handling code in general.
16 lines
315 B
C
16 lines
315 B
C
/*
|
|
* handlers.h
|
|
* by TuxSH
|
|
*
|
|
* This is part of Luma3DS, see LICENSE.txt for details
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
void __attribute__((noreturn)) mcuReboot(void);
|
|
void clearDCacheAndDMB(void);
|
|
|
|
void FIQHandler(void);
|
|
void undefinedInstructionHandler(void);
|
|
void dataAbortHandler(void);
|
|
void prefetchAbortHandler(void); |