84126fa7400d149944be2d669029e00095b0b999
[fw/sdcc] / device / lib / mcs51 / crtxinit.asm
1 ; /*-------------------------------------------------------------------------
2
3 ;   crtxinit.asm :- C run-time: copy XINIT to XISEG
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 __XPAGE
35         
36         .area GSINIT3 (CODE)
37   
38 __mcs51_genXINIT::
39         mov     r1,#l_XINIT
40         mov     a,r1
41         orl     a,#(l_XINIT >> 8)
42         jz      00003$
43         mov     r2,#((l_XINIT+255) >> 8)
44         mov     dptr,#s_XINIT
45         mov     r0,#s_XISEG
46         mov     __XPAGE,#(s_XISEG >> 8)
47 00001$: clr     a
48         movc    a,@a+dptr
49         movx    @r0,a
50         inc     dptr
51         inc     r0
52         cjne    r0,#0,00002$
53         inc     __XPAGE
54 00002$: djnz    r1,00001$
55         djnz    r2,00001$
56         mov     __XPAGE,#0xFF
57 00003$:
58