From 82acacceaa1bdcb9fb5ec8cece8a73bbf7a561b9 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 27 Apr 2015 13:20:47 -0400 Subject: fix name of sh crt asm directory --- crt/sh/crti.s | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 crt/sh/crti.s (limited to 'crt/sh/crti.s') diff --git a/crt/sh/crti.s b/crt/sh/crti.s new file mode 100644 index 00000000..0410ab63 --- /dev/null +++ b/crt/sh/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