summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/h8300/crtn.S
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-07-15 07:34:00 +0000
committerEric Andersen <andersen@codepoet.org>2004-07-15 07:34:00 +0000
commit71150804d1ac8ed2f7b9c6d3025fd415c58b129e (patch)
treeaab8c892a813847614070f73e711178cd3c9ec74 /libc/sysdeps/linux/h8300/crtn.S
parent255fbb6abcef56c5f8c36383d49a902686f258f5 (diff)
h8300 updates from Yoshinori Sato
Diffstat (limited to 'libc/sysdeps/linux/h8300/crtn.S')
-rw-r--r--libc/sysdeps/linux/h8300/crtn.S30
1 files changed, 30 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/h8300/crtn.S b/libc/sysdeps/linux/h8300/crtn.S
new file mode 100644
index 000000000..89e321868
--- /dev/null
+++ b/libc/sysdeps/linux/h8300/crtn.S
@@ -0,0 +1,30 @@
+#ifdef __H8300H__
+ .h8300h
+#endif
+#ifdef __H8300S__
+ .h8300s
+#endif
+ .file "initfini.c"
+; #APP
+
+ .section .init
+; #NO_APP
+ .align 1
+ .global __init
+; #NO_APP
+ mov.l @er7+,er6
+ rts
+ .size __init, .-__init
+; #APP
+
+ .section .fini
+; #NO_APP
+ .align 1
+ .global __fini
+; #NO_APP
+ mov.l @er7+,er6
+ rts
+ .size __fini, .-__fini
+; #APP
+
+ .end