mirror of
https://github.com/LumaTeam/Luma3DS.git
synced 2026-02-22 09:54:38 +00:00
14 lines
284 B
C
14 lines
284 B
C
|
|
/*
|
||
|
|
* handlers.h
|
||
|
|
* by TuxSH
|
||
|
|
*
|
||
|
|
* This is part of Luma3DS, see LICENSE.txt for details
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
void __attribute__((noreturn)) mcuReboot(void);
|
||
|
|
void FIQHandler(void);
|
||
|
|
void undefinedInstructionHandler(void);
|
||
|
|
void dataAbortHandler(void);
|
||
|
|
void prefetchAbortHandler(void);
|