diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-05 02:21:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-05 02:21:28 +0000 |
commit | f4005423ee520fab1b66d81aff87f00f6fc86204 (patch) | |
tree | 1e5dc5cac2311b518e03358b61ee03ff376ff1b3 /libc/sysdeps/linux/cris/crti.S | |
parent | b63b5dcfbf06edb3edd7eecdfff39fcf4dbf0604 (diff) |
Continue the conversion to using per-arch crti.S and crtn.S
Diffstat (limited to 'libc/sysdeps/linux/cris/crti.S')
-rw-r--r-- | libc/sysdeps/linux/cris/crti.S | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/cris/crti.S b/libc/sysdeps/linux/cris/crti.S new file mode 100644 index 000000000..78a1862ef --- /dev/null +++ b/libc/sysdeps/linux/cris/crti.S @@ -0,0 +1,36 @@ +#NO_APP + .file "initfini.c" +#APP + + .section .init +#NO_APP + .align 1 + .global _init + .type _init, @function +_init: + Push $srp + subq 4,$sp + movem $r0,[$sp] + move.d $pc,$r0 + sub.d .:GOTOFF,$r0 +#APP + + .align 1 + + + .section .fini +#NO_APP + .align 1 + .global _fini + .type _fini, @function +_fini: + Push $srp + subq 4,$sp + movem $r0,[$sp] + move.d $pc,$r0 + sub.d .:GOTOFF,$r0 +#APP + .align 1 + + +/*@TRAILER_BEGINS*/ |