PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
hdsk.h
1/*
2# _____ ___ ____ ___ ____
3# ____| | ____| | | |____|
4# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5#-----------------------------------------------------------------------
6# Copyright 2001-2004, ps2dev - http://www.ps2dev.org
7# Licenced under Academic Free License version 2.0
8# Review ps2sdk README & LICENSE files for further details.
9*/
10
11#ifndef __HDSK_H__
12#define __HDSK_H__
13
14struct hdskBitmap
15{
16 struct hdskBitmap *next; // 0x00
17 struct hdskBitmap *prev; // 0x04
18 u32 start; // 0x08
19 u32 length; // 0x0C
20 u32 type; // 0x10
21};
22
23#define HDSK_BITMAP_SIZE 0x4001
24#define IOBUFFER_SIZE_SECTORS 256 // Equal to the size of a 128MB partition. Do not alter (partitions must be a multiple of this).
25
26#endif