2012-09-08 08:37:16 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2014-11-27 18:13:28 -05:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2014.
|
2012-09-08 08:37:16 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2012-09-08 08:37:16 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
2012-09-08 08:37:16 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library 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. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
2012-09-08 08:37:16 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
2012-09-08 08:37:16 -04:00
|
|
|
|
2014-04-12 16:35:39 -04:00
|
|
|
x86/crt0.S
|
2013-07-10 09:26:01 -04:00
|
|
|
Implement the _start symbol at which execution begins which performs the
|
|
|
|
task of initializing the standard library and executing the main function.
|
2012-09-08 08:37:16 -04:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
.section .text
|
|
|
|
|
|
|
|
.global _start
|
|
|
|
.type _start, @function
|
|
|
|
_start:
|
2012-12-07 14:35:00 -05:00
|
|
|
# Set up end of the stack frame linked list.
|
|
|
|
xorl %ebp, %ebp
|
|
|
|
pushl %ebp # rip=0
|
|
|
|
pushl %ebp # rbp=0
|
|
|
|
movl %esp, %ebp
|
|
|
|
|
2012-09-08 08:37:16 -04:00
|
|
|
movl %ecx, environ # envp
|
|
|
|
|
|
|
|
# Arguments for main
|
2014-11-27 18:13:28 -05:00
|
|
|
subl $12, %esp
|
|
|
|
push %ecx # envp (to main)
|
|
|
|
push %ebx # argv (to main)
|
|
|
|
push %eax # argc (to main)
|
|
|
|
subl $4, %esp
|
|
|
|
push %ecx # envp (to initialize_standard_library)
|
|
|
|
push %ebx # argv (to initialize_standard_library)
|
|
|
|
push %eax # argc (to initialize_standard_library)
|
|
|
|
|
|
|
|
# Initialize the standard library.
|
2012-09-08 08:37:16 -04:00
|
|
|
call initialize_standard_library
|
2014-11-27 18:13:28 -05:00
|
|
|
addl $16, %esp
|
2012-09-08 08:37:16 -04:00
|
|
|
|
|
|
|
# Run the global constructors.
|
|
|
|
call _init
|
|
|
|
|
|
|
|
# Run main
|
|
|
|
call main
|
|
|
|
|
|
|
|
# Terminate the process with main's exit code.
|
2014-11-27 18:13:28 -05:00
|
|
|
subl $12, %esp
|
2012-09-08 08:37:16 -04:00
|
|
|
push %eax
|
|
|
|
call exit
|
2013-05-22 16:06:18 -04:00
|
|
|
.size _start, .-_start
|