12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #
- # $Id$
- # This file is part of the Free Pascal run time library.
- # Copyright (c) 1993,97 by Michael Van Canneyt and Peter Vreman
- # members of the Free Pascal development team.
- #
- # See the file COPYING.FPC, included in this distribution,
- # for details about the copyright.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY;without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- #
- #**********************************************************************}
- #
- # Linux ELF startup code for Free Pascal
- #
- .file "prt1.as"
- .text
- .globl _start
- .type _start,@function
- _start:
- /* First locate the start of the environment variables */
- popl %ecx
- movl %esp,%ebx /* Points to the arguments */
- movl %ecx,%eax
- incl %eax
- shll $2,%eax
- addl %esp,%eax
- andl $0xfffffff8,%esp /* Align stack */
- movl %eax,U_SYSLINUX_ENVP /* Move the environment pointer */
- movl %ecx,U_SYSLINUX_ARGC /* Move the argument counter */
- movl %ebx,U_SYSLINUX_ARGV /* Move the argument pointer */
- call PASCALMAIN
-
- .globl _haltproc
- .type _haltproc,@function
- _haltproc:
- movl $1,%eax /* exit call */
- xorl %ebx,%ebx
- movw U_SYSLINUX_EXITCODE,%bx
- int $0x80
- jmp _haltproc
-
- .data
- .align 4
-
- .globl ___brk_addr /* heap management */
- .type ___brk_addr,@object
- .size ___brk_addr,4
- ___brk_addr:
- .long 0
-
- .globl __curbrk /* necessary for libc */
- .type __curbrk,@object
- .size __curbrk,4
- __curbrk:
- .long 0
|