struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / device / lib / pic16 / libc / delay / delay1mtcy.S
blob49568915c424c0a30980e8e243c375527d9674fd
1 ;--------------------------------------------------------------------------
2 ;  delay1mtcy.S
4 ;  Copyright (C) 2005, Vangelis Rokas <vrokas at otenet.gr>
6 ;  This library is free software; you can redistribute it and/or modify it
7 ;  under the terms of the GNU General Public License as published by the
8 ;  Free Software Foundation; either version 2, or (at your option) any
9 ;  later version.
11 ;  This library is distributed in the hope that it will be useful,
12 ;  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;  GNU General Public License for more details.
16 ;  You should have received a copy of the GNU General Public License 
17 ;  along with this library; see the file COPYING. If not, write to the
18 ;  Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19 ;   MA 02110-1301, USA.
21 ;  As a special exception, if you link this library with other files,
22 ;  some of which are compiled with SDCC, to produce an executable,
23 ;  this library does not by itself cause the resulting executable to
24 ;  be covered by the GNU General Public License. This exception does
25 ;  not however invalidate any other reasons why the executable file
26 ;  might be covered by the GNU General Public License.
27 ;--------------------------------------------------------------------------
29         include <p18fxxx.inc>
31         extern  _delay10tcy
32         extern  _delay100tcy
33         extern  _delay10ktcy
35         global  _delay1mtcy
36     
37         code
39 _delay1mtcy:
40         ; polynomial for 1mtcy delay is f(x) = 100000 * (x-1) + 100000
41         decf    WREG, f
42     
43         movwf   POSTDEC1
44         movlw   99
45         call    _delay10ktcy
47         movlw   99
48         call    _delay100tcy
49         
50         movlw   9
51         call    _delay10tcy
53         movf    PREINC1, w
55         bz      @delay1m_end
56         bra     $+2
57     
58 @delay1m_loop:
59         movwf    POSTDEC1
61         movlw   99
62         call    _delay10ktcy
63         
64         movlw   99
65         call    _delay100tcy
66         
67         movlw   9
68         call    _delay10tcy
70         bra     $+2
71         bra     $+2
72         nop                         
73         movf    PREINC1, w
74         decfsz  WREG, f
75         bra     @delay1m_loop
77 @delay1m_end:
78         return
80         end