libctr9
Nintendo 3DS ARM9 library
command_ntr.h
1 // Copyright 2014 Normmatt
2 // Licensed under GPLv2 or any later version
3 // Refer to the license.txt file included.
4 
5 #pragma once
6 
7 #include <stdint.h>
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 void NTR_CmdReset(void);
14 uint32_t NTR_CmdGetCartId(void);
15 void NTR_CmdEnter16ByteMode(void);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20