sup39
23e5c658ad
- GCI Loader: gecko-gosub + 06 bin + 04 bl to onReadOptionBlock - place GCI Loader code at 817FE800 since [817FEEA0, 81800000) is used by system - place buffer at 817F1800 (instead of 817F1000+4) since there seems to be some alignment issue - Assume file size == 0x2000*6 since fileInfo->length seems to be 0
12 lines
184 B
C
12 lines
184 B
C
#ifndef __SMS_H__
|
|
#define __SMS_H__
|
|
|
|
typedef struct
|
|
{
|
|
int slot;
|
|
} TCardManager;
|
|
|
|
int mount_(TCardManager *this, bool);
|
|
int open_(TCardManager *this, CARDFileInfo *fileInfo);
|
|
|
|
#endif
|