diff options
Diffstat (limited to 'crt/nt32')
-rw-r--r-- | crt/nt32/Scrt1.c | 9 | ||||
-rw-r--r-- | crt/nt32/crtidata.c | 16 |
2 files changed, 25 insertions, 0 deletions
diff --git a/crt/nt32/Scrt1.c b/crt/nt32/Scrt1.c index ff5789f..c635211 100644 --- a/crt/nt32/Scrt1.c +++ b/crt/nt32/Scrt1.c @@ -1,2 +1,11 @@ +#include "psxglue.h" + +__psx_init_routine __psx_init; + +__psx_init_routine * __psx_init_fn(void) +{ + return __psx_init; +} + #define LIBC_STATIC #include "crt1.c" diff --git a/crt/nt32/crtidata.c b/crt/nt32/crtidata.c new file mode 100644 index 0000000..6037c25 --- /dev/null +++ b/crt/nt32/crtidata.c @@ -0,0 +1,16 @@ +/****************************************/ +/* dynamically linked applications only */ +/* see also: Scrt1.c */ +/****************************************/ + +#include "psxglue.h" + +#define __external_routine __attribute__((dllimport)) + +__external_routine +__psx_init_routine __psx_init; + +__psx_init_routine * __psx_init_fn(void) +{ + return __psx_init; +} |