From 3a3c813e08d808224c12fd0e9104aeff7c45c9a7 Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Sat, 5 Oct 2013 05:13:18 -0500 Subject: superh port --- crt/superh/crti.s | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 crt/superh/crti.s (limited to 'crt/superh/crti.s') diff --git a/crt/superh/crti.s b/crt/superh/crti.s new file mode 100644 index 00000000..0410ab63 --- /dev/null +++ b/crt/superh/crti.s @@ -0,0 +1,13 @@ +.section .init +.global _init +.type _init, @function +_init: + sts.l pr, @-r15 + nop + +.section .fini +.global _fini +.type _fini, @function +_fini: + sts.l pr, @-r15 + nop -- cgit v1.2.1