fpc/rtl/linux/i386/cprt21.as
2001-06-04 18:05:47 +00:00

111 lines
2.9 KiB
ActionScript

#
# $Id$
# This file is part of the Free Pascal run time library.
# Copyright (c) 1999-2000 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 %esi
movl %eax,%edi
movl %esp,%ebx /* Points to the arguments */
movl %esi,%eax
incl %eax
shll $2,%eax
addl %esp,%eax
andl $0xfffffff8,%esp /* Align stack */
movl %eax,U_SYSTEM_ENVP /* Move the environment pointer */
movl %esi,U_SYSTEM_ARGC /* Move the argument counter */
movl %ebx,U_SYSTEM_ARGV /* Move the argument pointer */
xorl %ebp,%ebp
pushl %edi
pushl %esp
pushl %edx
pushl $_fini_dummy
pushl $_init_dummy
pushl %ebx
pushl %esi
pushl $main
call __libc_start_main
hlt
/* fake main routine which will be run from libc */
main:
/* save return address */
popl %eax
movl %eax,___fpc_ret
movl %ebx,___fpc_ret_ebx
movl %ebp,___fpc_ret_ebp
pushl %eax
/* start the program */
xorl %ebp,%ebp
call PASCALMAIN
hlt
.globl _haltproc
.type _haltproc,@function
_haltproc:
xorl %eax,%eax /* load and save exitcode */
movw U_SYSTEM_EXITCODE,%ax
movl ___fpc_ret,%edx /* return to libc */
movl ___fpc_ret_ebp,%ebp
movl ___fpc_ret_ebx,%ebx
push %edx
_init_dummy:
_fini_dummy:
ret
.data
.align 4
.globl ___fpc_brk_addr /* heap management */
.type ___fpc_brk_addr,@object
.size ___fpc_brk_addr,4
___fpc_brk_addr:
.long 0
___fpc_ret: /* return address to libc */
.long 0
___fpc_ret_ebx:
.long 0
___fpc_ret_ebp:
.long 0
#
# $Log$
# Revision 1.4 2001-06-04 18:05:47 peter
# * use own dummy for _init and _fini
#
# Revision 1.3 2001/02/14 22:36:21 sg
# * Merged Pierre's fix for my problem with heaptrace unit (by setting EBP
# to zero before calling PASCALMAIN)
#
# Revision 1.2 2000/10/15 09:09:23 peter
# * startup code also needed syslinux->system updates
#
# Revision 1.1 2000/07/13 06:30:55 michael
# + Initial import
#