diff options
| author | Glenn Anderson | 2015-08-14 23:27:02 -0400 |
|---|---|---|
| committer | Glenn Anderson | 2015-08-14 23:27:02 -0400 |
| commit | 1f6cb4f3cbf7ae615d12c1dd66136347247ab7a6 (patch) | |
| tree | ca88156373140a2081e64ae091d05555adadad69 /include/user/pss.h | |
| download | vds-libraries-1f6cb4f3cbf7ae615d12c1dd66136347247ab7a6.tar.gz | |
Initial commit. Added headers from psp2sdk.
Diffstat (limited to '')
| -rw-r--r-- | include/user/pss.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/user/pss.h b/include/user/pss.h new file mode 100644 index 0000000..08340e1 --- /dev/null +++ b/include/user/pss.h @@ -0,0 +1,11 @@ +#ifndef _PSP2_PSS_H_ +#define _PSP2_PSS_H_ + +#include <psp2/types.h> + +void *pss_code_mem_alloc(SceSize *); +void pss_code_mem_flush_icache(const void *, SceSize); +void pss_code_mem_lock(void); +void pss_code_mem_unlock(void); + +#endif |
