libctr9
Nintendo 3DS ARM9 library
io.h
1 /*******************************************************************************
2  * Copyright (C) 2016 Gabriel Marcano
3  *
4  * Refer to the COPYING.txt file at the top of the project directory. If that is
5  * missing, this file is licensed under the GPL version 2.0 or later.
6  *
7  ******************************************************************************/
8 
9 #ifndef CTR_IO_H_
10 #define CTR_IO_H_
11 
12 #include "io/ctr_io_interface.h"
13 #include "io/ctr_nand_interface.h"
15 #include "io/ctr_sd_interface.h"
16 #include "io/ctr_fatfs_interface.h"
17 #include "io/ctr_disks.h"
19 #include "io/ctr_fatfs.h"
20 #include "io/ctr_cart_interface.h"
21 
22 #endif//CTR_IO_H_
23