mirror of
https://github.com/libretro/RetroArch
synced 2024-12-29 12:31:05 +00:00
86b47b4859
* Added newlib changes * Add action to launch PPSSPP simulator * Remove legacy config for the stack and heap * Add pthread * Simplify kernel_functions and improve references to HAVE_KERNEL_PRX * Add some flags * Improve audio init/deinit * Improve exit by clicking home * Add CI for PSP1 * Update PSP.yml
16 lines
429 B
Plaintext
16 lines
429 B
Plaintext
# Define the exports for the prx
|
|
PSP_BEGIN_EXPORTS
|
|
|
|
# These four lines are mandatory (although you can add other functions like module_stop)
|
|
# syslib is a psynonym for the single mandatory export.
|
|
PSP_EXPORT_START(syslib, 0, 0x8000)
|
|
PSP_EXPORT_FUNC_HASH(module_start)
|
|
PSP_EXPORT_VAR_HASH(module_info)
|
|
PSP_EXPORT_END
|
|
|
|
PSP_EXPORT_START(kernel_functions, 0, 0x4001)
|
|
PSP_EXPORT_FUNC(exitspawn_kernel)
|
|
PSP_EXPORT_END
|
|
|
|
PSP_END_EXPORTS
|