diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-15 13:37:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-15 13:37:04 +0000 |
commit | 346abd962daabf7fd33b70382d2e44bd7942b7de (patch) | |
tree | 3250fd0320b1696f970a0811faa2abb6b1c77c1f /libc/sysdeps/linux/m68k/crt0.s | |
parent | b239d3e6bfdddd54aa805a778b48a02793d8f1f4 (diff) |
Remove generated files. Bring Makefile behavior into sync with other arches.
Diffstat (limited to 'libc/sysdeps/linux/m68k/crt0.s')
-rw-r--r-- | libc/sysdeps/linux/m68k/crt0.s | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/libc/sysdeps/linux/m68k/crt0.s b/libc/sysdeps/linux/m68k/crt0.s deleted file mode 100644 index 87bc173d8..000000000 --- a/libc/sysdeps/linux/m68k/crt0.s +++ /dev/null @@ -1,68 +0,0 @@ -# 1 "crt0.S" - - - - - - - - - - - - - - - - - - - - .global _start - .global __main - .global _end - - - .bss - .global environ -environ: - .long 0 - - .text -_start: - nop - nop - - movea.l %d5, %a5 - - lea __bss_start(%a5), %a0 - lea end(%a5), %a1 - - - - - - - - - - - - - - move.l 8(%sp), %d5 - move.l %d5, environ(%a5) - - bsr main - - move.l %d0,%sp@- - bsr exit - -# 69 "crt0.S" - - - .global _cleanup -_cleanup: - rts - - |