-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed taiHEN dependency. - Update get ctrl function. So can load vmass.skprx from low boot level
- Loading branch information
1 parent
ff62992
commit 27b6313
Showing
9 changed files
with
155 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
if [ ! -d build ]; then | ||
mkdir build | ||
fi | ||
|
||
cd build | ||
cmake ../ | ||
make | ||
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
vmass: | ||
attributes: 0 | ||
attributes: 7 | ||
version: | ||
major: 0x1 | ||
minor: 0x31 | ||
minor: 0x40 | ||
main: | ||
start: module_start | ||
stop: module_stop | ||
modules: | ||
VmassForDriver: | ||
SceUsbMassForDriver: | ||
syscall: false | ||
nid: 0x15243EC5 | ||
functions: | ||
- vmassGetDevInfo | ||
- vmassReadSector | ||
- vmassWriteSector | ||
- vmassGetDevInfo: 0xD989A9F6 | ||
- vmassReadSector: 0xB80D1DF8 | ||
- vmassWriteSector: 0x081CA197 | ||
- sceUsbMassIntrHandler: 0xF2BAB182 | ||
- SceUsbMassForDriver_3C821E99: 0x3C821E99 | ||
- SceUsbMassForDriver_7833D935: 0x7833D935 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** | ||
* \kernelgroup{SceSysEvent} | ||
* \usage{psp2kern/kernel/sysevent.h,SceKernelSuspendForDriver_stub} | ||
*/ | ||
|
||
#ifndef _PSP2_KERNEL_SYSEVENT_H_ | ||
#define _PSP2_KERNEL_SYSEVENT_H_ | ||
|
||
#include <psp2kern/types.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
typedef int (* SceSysEventCallback)(int resume, int eventid, void *args, void *opt); | ||
|
||
SceUID ksceKernelRegisterSysEventHandler(const char *name, SceSysEventCallback cb, void *argp); | ||
int ksceKernelUnregisterSysEventHandler(SceUID id); | ||
|
||
#define SCE_SYS_EVENT_STATE_SUSPEND (0) | ||
#define SCE_SYS_EVENT_STATE_POWEROFF (1) | ||
#define SCE_SYS_EVENT_STATE_REBOOT (2) | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* _PSP2_KERNEL_SYSEVENT_H_ */ |
Oops, something went wrong.