ppsspp/Core/HW/MemoryStick.h

55 lines
1.7 KiB
C
Raw Normal View History

// 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/.
#pragma once
2014-03-15 18:32:57 +00:00
#include "Common/CommonTypes.h"
class PointerWrap;
2012-11-06 14:45:13 +00:00
// mscmhc0 states (status of the card.)
2012-11-06 14:45:13 +00:00
enum MemStickState {
PSP_MEMORYSTICK_STATE_INSERTED = 1,
PSP_MEMORYSTICK_STATE_NOT_INSERTED = 2,
2012-11-06 14:45:13 +00:00
};
// memstick FAT states (status of mounting.)
2012-11-06 14:45:13 +00:00
enum MemStickFatState {
PSP_FAT_MEMORYSTICK_STATE_UNASSIGNED = 0,
PSP_FAT_MEMORYSTICK_STATE_ASSIGNED = 1,
2012-11-06 14:45:13 +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,
};
void MemoryStick_Init();
void MemoryStick_Shutdown();
void MemoryStick_DoState(PointerWrap &p);
2012-11-06 14:45:13 +00:00
MemStickState MemoryStick_State();
MemStickFatState MemoryStick_FatState();
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();
u64 MemoryStick_FreeSpace();
void MemoryStick_NotifyWrite();