13 lines
236 B
C
13 lines
236 B
C
|
/*
|
||
|
* handlers.h
|
||
|
* by TuxSH
|
||
|
*
|
||
|
* This is part of Luma3DS, see LICENSE.txt for details
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
void FIQHandler(void);
|
||
|
void undefinedInstructionHandler(void);
|
||
|
void dataAbortHandler(void);
|
||
|
void prefetchAbortHandler(void);
|