2020-10-05 18:26:04 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
2013-12-30 09:17:11 +00:00
|
|
|
#pragma once
|
|
|
|
|
2014-03-15 18:32:57 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2013-02-04 04:31:46 +00:00
|
|
|
|
|
|
|
class PointerWrap;
|
2012-11-06 14:45:13 +00:00
|
|
|
|
2016-08-06 03:42:58 +00:00
|
|
|
// mscmhc0 states (status of the card.)
|
2012-11-06 14:45:13 +00:00
|
|
|
enum MemStickState {
|
2016-08-06 03:42:58 +00:00
|
|
|
PSP_MEMORYSTICK_STATE_INSERTED = 1,
|
|
|
|
PSP_MEMORYSTICK_STATE_NOT_INSERTED = 2,
|
2012-11-06 14:45:13 +00:00
|
|
|
};
|
|
|
|
|
2016-08-06 03:42:58 +00:00
|
|
|
// memstick FAT states (status of mounting.)
|
2012-11-06 14:45:13 +00:00
|
|
|
enum MemStickFatState {
|
|
|
|
PSP_FAT_MEMORYSTICK_STATE_UNASSIGNED = 0,
|
2014-03-03 16:16:53 +00:00
|
|
|
PSP_FAT_MEMORYSTICK_STATE_ASSIGNED = 1,
|
2012-11-06 14:45:13 +00:00
|
|
|
};
|
|
|
|
|
2016-08-06 03:42:58 +00:00
|
|
|
enum MemStickDriverState {
|
|
|
|
PSP_MEMORYSTICK_STATE_DRIVER_READY = 1,
|
|
|
|
PSP_MEMORYSTICK_STATE_DRIVER_BUSY = 2,
|
|
|
|
PSP_MEMORYSTICK_STATE_DEVICE_INSERTED = 4,
|
|
|
|
PSP_MEMORYSTICK_STATE_DEVICE_REMOVED = 8,
|
|
|
|
};
|
|
|
|
|
2014-11-01 06:48:08 +00:00
|
|
|
void MemoryStick_Init();
|
2021-04-16 08:15:23 +00:00
|
|
|
void MemoryStick_Shutdown();
|
2012-12-27 19:58:15 +00:00
|
|
|
void MemoryStick_DoState(PointerWrap &p);
|
2012-11-06 14:45:13 +00:00
|
|
|
MemStickState MemoryStick_State();
|
|
|
|
MemStickFatState MemoryStick_FatState();
|
|
|
|
|
2016-08-06 04:05:48 +00:00
|
|
|
void MemoryStick_SetState(MemStickState state);
|
2012-11-09 09:01:54 +00:00
|
|
|
void MemoryStick_SetFatState(MemStickFatState state);
|
|
|
|
|
2012-11-06 14:45:13 +00:00
|
|
|
u64 MemoryStick_SectorSize();
|
2013-12-30 09:17:11 +00:00
|
|
|
u64 MemoryStick_FreeSpace();
|