2020-10-05 20:26:04 +02: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 10:17:11 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
2014-03-15 11:32:57 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2013-02-03 20:31:46 -08:00
|
|
|
|
|
|
|
|
class PointerWrap;
|
2012-11-06 15:45:13 +01:00
|
|
|
|
2016-08-05 20:42:58 -07:00
|
|
|
// mscmhc0 states (status of the card.)
|
2012-11-06 15:45:13 +01:00
|
|
|
enum MemStickState {
|
2016-08-05 20:42:58 -07:00
|
|
|
PSP_MEMORYSTICK_STATE_INSERTED = 1,
|
|
|
|
|
PSP_MEMORYSTICK_STATE_NOT_INSERTED = 2,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// memstick FAT states (status of mounting.)
|
|
|
|
|
enum MemStickFatState {
|
|
|
|
|
PSP_FAT_MEMORYSTICK_STATE_UNASSIGNED = 0,
|
|
|
|
|
PSP_FAT_MEMORYSTICK_STATE_ASSIGNED = 1,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum MemStickDriverState {
|
2014-03-03 11:16:53 -05:00
|
|
|
PSP_MEMORYSTICK_STATE_DRIVER_READY = 1,
|
|
|
|
|
PSP_MEMORYSTICK_STATE_DRIVER_BUSY = 2,
|
2012-11-06 15:45:13 +01:00
|
|
|
PSP_MEMORYSTICK_STATE_DEVICE_INSERTED = 4,
|
2014-03-03 11:16:53 -05:00
|
|
|
PSP_MEMORYSTICK_STATE_DEVICE_REMOVED = 8,
|
2012-11-06 15:45:13 +01:00
|
|
|
};
|
|
|
|
|
|
2014-10-31 23:48:08 -07:00
|
|
|
void MemoryStick_Init();
|
2021-04-16 01:15:23 -07:00
|
|
|
void MemoryStick_Shutdown();
|
2012-12-27 11:58:15 -08:00
|
|
|
void MemoryStick_DoState(PointerWrap &p);
|
2012-11-06 15:45:13 +01:00
|
|
|
MemStickState MemoryStick_State();
|
|
|
|
|
MemStickFatState MemoryStick_FatState();
|
|
|
|
|
|
2016-08-05 21:05:48 -07:00
|
|
|
void MemoryStick_SetState(MemStickState state);
|
2012-11-09 10:01:54 +01:00
|
|
|
void MemoryStick_SetFatState(MemStickFatState state);
|
|
|
|
|
|
2012-11-06 15:45:13 +01:00
|
|
|
u64 MemoryStick_SectorSize();
|
2013-12-30 10:17:11 +01:00
|
|
|
u64 MemoryStick_FreeSpace();
|
2021-09-11 07:29:15 -07:00
|
|
|
void MemoryStick_NotifyWrite();
|