mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-24 04:32:36 +00:00
Remove outdated svn ids, change url, fix permissions
Convert to unix line endings
This commit is contained in:
0
src/kernel/InitForKernel.S
Executable file → Normal file
0
src/kernel/InitForKernel.S
Executable file → Normal file
3
src/kernel/pspaudiorouting.h
Executable file → Normal file
3
src/kernel/pspaudiorouting.h
Executable file → Normal file
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2007 Alexander Berl <raphael@fx-world.org>
|
||||
*
|
||||
* $Id: pspinit.h 2345 2007-12-08 02:34:59Z raphael $
|
||||
*/
|
||||
#ifndef __PSPAUDIOROUTING_H__
|
||||
#define __PSPAUDIOROUTING_H__
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2006 James F.
|
||||
*
|
||||
* $Id: pspexception.h 1906 2006-05-09 18:42:57Z tyranid $
|
||||
*/
|
||||
|
||||
#ifndef PSPEXCEPTION_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2006 Harley G. <harleyg@0x89.org>
|
||||
*
|
||||
* $Id: pspidstorage.h 2120 2006-12-30 23:19:33Z tyranid $
|
||||
*/
|
||||
|
||||
#ifndef PSPIDSTORAGE_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2007 Iaroslav Gaponenko <adrahil@gmail.com>
|
||||
*
|
||||
* $Id: pspimpose_driver.h$
|
||||
*/
|
||||
|
||||
#ifndef __IMPOSE_DRIVER_H__
|
||||
|
||||
147
src/kernel/pspinit.h
Executable file → Normal file
147
src/kernel/pspinit.h
Executable file → Normal file
@@ -1,74 +1,73 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
* pspinit.h - Interface to InitForKernel.
|
||||
*
|
||||
* Copyright (c) 2007 moonlight
|
||||
*
|
||||
* $Id: pspinit.h 2433 2008-10-15 10:00:27Z iwn $
|
||||
*/
|
||||
#ifndef __PSPINIT_H__
|
||||
#define __PSPINIT_H__
|
||||
|
||||
enum PSPBootFrom
|
||||
{
|
||||
PSP_BOOT_FLASH = 0, /* ? */
|
||||
PSP_BOOT_DISC = 0x20,
|
||||
PSP_BOOT_MS = 0x40,
|
||||
};
|
||||
|
||||
enum PSPInitApitype
|
||||
{
|
||||
PSP_INIT_APITYPE_DISC = 0x120,
|
||||
PSP_INIT_APITYPE_DISC_UPDATER = 0x121,
|
||||
PSP_INIT_APITYPE_MS1 = 0x140,
|
||||
PSP_INIT_APITYPE_MS2 = 0x141,
|
||||
PSP_INIT_APITYPE_MS3 = 0x142,
|
||||
PSP_INIT_APITYPE_MS4 = 0x143,
|
||||
PSP_INIT_APITYPE_MS5 = 0x144,
|
||||
PSP_INIT_APITYPE_VSH1 = 0x210, /* ExitGame */
|
||||
PSP_INIT_APITYPE_VSH2 = 0x220, /* ExitVSH */
|
||||
};
|
||||
|
||||
enum PSPKeyConfig
|
||||
{
|
||||
PSP_INIT_KEYCONFIG_VSH = 0x100,
|
||||
PSP_INIT_KEYCONFIG_GAME = 0x200,
|
||||
PSP_INIT_KEYCONFIG_POPS = 0x300,
|
||||
};
|
||||
|
||||
/**
|
||||
* Gets the api type
|
||||
*
|
||||
* @return the api type in which the system has booted
|
||||
*/
|
||||
int sceKernelInitApitype();
|
||||
|
||||
/**
|
||||
* Gets the filename of the executable to be launched after all modules of the api.
|
||||
*
|
||||
* @return filename of executable or NULL if no executable found.
|
||||
*/
|
||||
char *sceKernelInitFileName();
|
||||
|
||||
/**
|
||||
*
|
||||
* Gets the device in which the application was launched.
|
||||
*
|
||||
* @return the device code, one of PSPBootFrom values.
|
||||
*/
|
||||
int sceKernelBootFrom();
|
||||
|
||||
/**
|
||||
* Get the key configuration in which the system has booted.
|
||||
*
|
||||
* @return the key configuration code, one of PSPKeyConfig values
|
||||
*/
|
||||
int InitForKernel_7233B5BC();
|
||||
|
||||
#define sceKernelInitKeyConfig InitForKernel_7233B5BC
|
||||
|
||||
#endif
|
||||
|
||||
/*
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
* pspinit.h - Interface to InitForKernel.
|
||||
*
|
||||
* Copyright (c) 2007 moonlight
|
||||
*
|
||||
*/
|
||||
#ifndef __PSPINIT_H__
|
||||
#define __PSPINIT_H__
|
||||
|
||||
enum PSPBootFrom
|
||||
{
|
||||
PSP_BOOT_FLASH = 0, /* ? */
|
||||
PSP_BOOT_DISC = 0x20,
|
||||
PSP_BOOT_MS = 0x40,
|
||||
};
|
||||
|
||||
enum PSPInitApitype
|
||||
{
|
||||
PSP_INIT_APITYPE_DISC = 0x120,
|
||||
PSP_INIT_APITYPE_DISC_UPDATER = 0x121,
|
||||
PSP_INIT_APITYPE_MS1 = 0x140,
|
||||
PSP_INIT_APITYPE_MS2 = 0x141,
|
||||
PSP_INIT_APITYPE_MS3 = 0x142,
|
||||
PSP_INIT_APITYPE_MS4 = 0x143,
|
||||
PSP_INIT_APITYPE_MS5 = 0x144,
|
||||
PSP_INIT_APITYPE_VSH1 = 0x210, /* ExitGame */
|
||||
PSP_INIT_APITYPE_VSH2 = 0x220, /* ExitVSH */
|
||||
};
|
||||
|
||||
enum PSPKeyConfig
|
||||
{
|
||||
PSP_INIT_KEYCONFIG_VSH = 0x100,
|
||||
PSP_INIT_KEYCONFIG_GAME = 0x200,
|
||||
PSP_INIT_KEYCONFIG_POPS = 0x300,
|
||||
};
|
||||
|
||||
/**
|
||||
* Gets the api type
|
||||
*
|
||||
* @return the api type in which the system has booted
|
||||
*/
|
||||
int sceKernelInitApitype();
|
||||
|
||||
/**
|
||||
* Gets the filename of the executable to be launched after all modules of the api.
|
||||
*
|
||||
* @return filename of executable or NULL if no executable found.
|
||||
*/
|
||||
char *sceKernelInitFileName();
|
||||
|
||||
/**
|
||||
*
|
||||
* Gets the device in which the application was launched.
|
||||
*
|
||||
* @return the device code, one of PSPBootFrom values.
|
||||
*/
|
||||
int sceKernelBootFrom();
|
||||
|
||||
/**
|
||||
* Get the key configuration in which the system has booted.
|
||||
*
|
||||
* @return the key configuration code, one of PSPKeyConfig values
|
||||
*/
|
||||
int InitForKernel_7233B5BC();
|
||||
|
||||
#define sceKernelInitKeyConfig InitForKernel_7233B5BC
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2005 James F. (tyranid@gmail.com)
|
||||
*
|
||||
* $Id: pspintrman_kernel.h 2100 2006-12-12 19:04:19Z tyranid $
|
||||
*/
|
||||
|
||||
#ifndef PSPINTRMAN_KERNEL_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -9,7 +9,6 @@
|
||||
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
||||
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
||||
*
|
||||
* $Id: pspiofilemgr_kernel.h 1939 2006-06-04 22:03:42Z tyranid $
|
||||
*/
|
||||
|
||||
#ifndef PSPIOFILEMGR_KERNEL_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
||||
*
|
||||
* $Id: pspkdebug.h 1971 2006-07-17 19:43:52Z tyranid $
|
||||
*/
|
||||
|
||||
#ifndef PSPKDEBUG_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -9,7 +9,6 @@
|
||||
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
||||
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
||||
*
|
||||
* $Id: pspkernel.h 1207 2005-10-23 05:50:29Z mrbrown $
|
||||
*/
|
||||
|
||||
#ifndef PSPKERNEL_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -9,7 +9,6 @@
|
||||
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
||||
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
||||
*
|
||||
* $Id: psploadcore.h 2433 2008-10-15 10:00:27Z iwn $
|
||||
*/
|
||||
|
||||
#ifndef PSPLOADCORE_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2007 - DA (Taken from the 303oe SDK)
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#ifndef PSPLOADEXEC_KERNEL_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -9,7 +9,6 @@
|
||||
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
||||
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
||||
*
|
||||
* $Id: pspmodulemgr.h 792 2005-07-27 09:03:36Z warren $
|
||||
*/
|
||||
|
||||
#ifndef __MODMGRKERNEL_H__
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -9,7 +9,6 @@
|
||||
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
||||
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
||||
*
|
||||
* $Id: pspstdio_kernel.h 1095 2005-09-27 21:02:16Z jim $
|
||||
*/
|
||||
|
||||
#ifndef PSPSTDIO_KERNEL_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2007 James F
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#ifndef PSPSYSCLIB_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2006 James F
|
||||
*
|
||||
* $Id: pspsyscon.h 2413 2008-07-23 22:04:04Z raphael $
|
||||
*/
|
||||
|
||||
#ifndef PSPSYSCON_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2005 James F.
|
||||
*
|
||||
* $Id: pspsysmem.h 1095 2005-09-27 21:02:16Z jim $
|
||||
*/
|
||||
|
||||
/* Note: Some of the structures, types, and definitions in this file were
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -9,7 +9,6 @@
|
||||
* Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
|
||||
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
||||
*
|
||||
* $Id: pspsysreg.h 1095 2005-09-27 21:02:16Z jim $
|
||||
*/
|
||||
|
||||
#ifndef PSPSYSREG_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2007 Iaroslav Gaponenko <adrahil@gmail.com>
|
||||
*
|
||||
* $Id: pspsystimer.h 2149 2007-01-25 20:46:21Z tyranid $
|
||||
*/
|
||||
|
||||
#ifndef __SYSTIMER_H__
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -7,7 +7,6 @@
|
||||
*
|
||||
* Copyright (c) 2005 James F.
|
||||
*
|
||||
* $Id: pspthreadman_kernel.h 2131 2007-01-15 21:42:22Z tyranid $
|
||||
*/
|
||||
|
||||
#ifndef PSPTHREADMANKERNEL_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* PSP Software Development Kit - http://www.pspdev.org
|
||||
* PSP Software Development Kit - https://github.com/pspdev
|
||||
* -----------------------------------------------------------------------
|
||||
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
||||
*
|
||||
@@ -8,7 +8,6 @@
|
||||
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
||||
* Copyright (c) 2005 adresd
|
||||
*
|
||||
* $Id: psputilsforkernel.h 2339 2007-12-06 19:41:18Z raphael $
|
||||
*/
|
||||
|
||||
#ifndef __PSPUTILSFORKERNEL_H__
|
||||
|
||||
0
src/kernel/sceAudioRouting_driver.S
Executable file → Normal file
0
src/kernel/sceAudioRouting_driver.S
Executable file → Normal file
Reference in New Issue
Block a user