mirror of
https://github.com/joel16/NTPSP.git
synced 2024-11-26 20:50:31 +00:00
17 lines
446 B
Plaintext
17 lines
446 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(module_start)
|
||
|
PSP_EXPORT_FUNC(module_stop)
|
||
|
PSP_EXPORT_VAR(module_info)
|
||
|
PSP_EXPORT_END
|
||
|
|
||
|
PSP_EXPORT_START(rtc_driver, 0, 0x4001)
|
||
|
PSP_EXPORT_FUNC(pspRtcSetCurrentTick)
|
||
|
PSP_EXPORT_END
|
||
|
|
||
|
PSP_END_EXPORTS
|