summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/alpha/start.S
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2003-02-17 13:58:09 +0000
committerMystery Man <unknown@mandriva.org>2003-02-17 13:58:09 +0000
commit0dba959cedf1129579809c769929713e3ad93099 (patch)
tree36721d86f80dddd9ac452269a0eb0f5d2159328c /mdk-stage1/dietlibc/alpha/start.S
parenta5d6fe3636f8080b9603572894ed317aaed6d2c8 (diff)
downloaddrakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.tar
drakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.tar.gz
drakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.tar.bz2
drakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.tar.xz
drakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.zip
This commit was manufactured by cvs2svn to create tag 'V9_1_0_34mdk'.V9_1_0_34mdk
Diffstat (limited to 'mdk-stage1/dietlibc/alpha/start.S')
-rw-r--r--mdk-stage1/dietlibc/alpha/start.S35
1 files changed, 0 insertions, 35 deletions
diff --git a/mdk-stage1/dietlibc/alpha/start.S b/mdk-stage1/dietlibc/alpha/start.S
deleted file mode 100644
index 00b8e950d..000000000
--- a/mdk-stage1/dietlibc/alpha/start.S
+++ /dev/null
@@ -1,35 +0,0 @@
-#include "start.h"
-
-#ifdef __alpha__
-
-.text
-.align 2
- .set noreorder
-
-.global __start
-__start:
-.global _start
-_start:
- clr $fp /* clear frame pointer */
-
- br $gp,.Lstart /* set global pointer */
-.Lstart:
- ldgp $gp, 0($gp)
-
-/* prepare to call main */
- ldl $16, 0($sp) /* argc */
-
- lda $17, 8($sp) /* argv */
-
- addq $16, 1, $18 /* argp */
- s8addq $18, $17, $18 /* (8*(argc+1))+argv -> argp */
-
- stq $18, environ
-
- mov $0, $21 /* mov v0(dynload) to a5 */
-
- jsr $26, main
- mov $0, $16
- jsr $26, exit /* YES, CALL! for threads and atexit ! (+4 byte) */
-
-#endif