Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / mcs51 / crtstart.asm
1 ; /*-------------------------------------------------------------------------
2
3 ;   crtstart.asm :- C run-time: startup                
4
5 ;    This library is free software; you can redistribute it and/or modify it
6 ;    under the terms of the GNU Library General Public License as published by the
7 ;    Free Software Foundation; either version 2, or (at your option) any
8 ;    later version.
9 ;    
10 ;    This library is distributed in the hope that it will be useful,
11 ;    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ;    GNU Library General Public License for more details.
14 ;    
15 ;    You should have received a copy of the GNU Library General Public License
16 ;    along with this program; if not, write to the Free Software
17 ;    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 ;    
19 ;    In other words, you are welcome to use, share and improve this program.
20 ;    You are forbidden to forbid anyone else to use, share and improve
21 ;    what you give them.   Help stamp out software-hoarding!  
22 ; -------------------------------------------------------------------------*/
23
24         .area CSEG    (CODE)
25         .area GSINIT0 (CODE)
26         .area GSINIT1 (CODE)
27         .area GSINIT2 (CODE)
28         .area GSINIT3 (CODE)
29         .area GSINIT4 (CODE)
30         .area GSINIT5 (CODE)
31         .area GSINIT  (CODE)
32         .area GSFINAL (CODE)
33
34         .globl __start__stack
35         
36         .area GSINIT0 (CODE)
37
38 __sdcc_gsinit_startup::
39         mov     sp,#__start__stack - 1
40
41         .area GSINIT2 (CODE)
42         
43         lcall   __sdcc_external_startup
44         mov     a,dpl
45         jz      __sdcc_init_data
46         ljmp    __sdcc_program_startup
47 __sdcc_init_data: