OpenCores
URL https://opencores.org/ocsvn/openmsp430/openmsp430/trunk

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [src/] [clock_module_asic_lfxt.s43] - Blame information for rev 141

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 134 olivier.gi
/*===========================================================================*/
2
/* Copyright (C) 2001 Authors                                                */
3
/*                                                                           */
4
/* This source file may be used and distributed without restriction provided */
5
/* that this copyright statement is not removed from the file and that any   */
6
/* derivative work contains the original copyright notice and the associated */
7
/* disclaimer.                                                               */
8
/*                                                                           */
9
/* This source file is free software; you can redistribute it and/or modify  */
10
/* it under the terms of the GNU Lesser General Public License as published  */
11
/* by the Free Software Foundation; either version 2.1 of the License, or    */
12
/* (at your option) any later version.                                       */
13
/*                                                                           */
14
/* This source is distributed in the hope that it will be useful, but WITHOUT*/
15
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or     */
16
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public       */
17
/* License for more details.                                                 */
18
/*                                                                           */
19
/* You should have received a copy of the GNU Lesser General Public License  */
20
/* along with this source; if not, write to the Free Software Foundation,    */
21
/* Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA        */
22
/*                                                                           */
23
/*===========================================================================*/
24
/*                               CLOCK MODULE                                */
25
/*---------------------------------------------------------------------------*/
26
/* Test the clock module:                                                    */
27
/*                        - Check the MCLK clock generation.                 */
28
/*                                                                           */
29
/* Author(s):                                                                */
30
/*             - Olivier Girard,    olgirard@gmail.com                       */
31
/*                                                                           */
32
/*---------------------------------------------------------------------------*/
33
/* $Rev: 19 $                                                                */
34
/* $LastChangedBy: olivier.girard $                                          */
35
/* $LastChangedDate: 2009-08-04 23:47:15 +0200 (Tue, 04 Aug 2009) $          */
36
/*===========================================================================*/
37
 
38 141 olivier.gi
.include "pmem_defs.asm"
39
 
40 134 olivier.gi
.global main
41
 
42
.macro LPM_CUSTOM               ; # Stop CPU and LFXT oscillator
43
 bis    #0x0030, r2
44
.endm
45
.macro LPM_CUSTOM_exit
46
 bic    #0x0030, @r1
47
.endm
48
 
49
 
50
WAIT_FUNC:
51
        dec r14
52
        jnz WAIT_FUNC
53
        ret
54
 
55
main:
56
        mov #DMEM_250, r1       ; # Initialize stack pointer
57
        eint                    ; # Enable interrupts
58
 
59
        mov   #0x0000, &DMEM_200
60
        mov   #0x0000, r15
61
        mov   #0x0000, r10
62
 
63
 
64
      /* --------------      MCLK GENERATION - LFXT_CLK INPUT    ----------------- */
65
 
66
        mov.b  #0x80, &BCSCTL2  ; # Div /1
67
        mov    #0x0003, r14
68
        call   #WAIT_FUNC
69
 
70
        mov    #0x0001, r15     ; # First make sure CPU runs with LFXT_CLK
71
        mov    #0x000A, r14
72
        call   #WAIT_FUNC
73
 
74
        mov    #0x0002, r15     ; # Make sure the CPU stops and LFXT oscillator too
75
        LPM_CUSTOM
76
 
77
        mov    #0x0003, r15     ; # Make sure CPU re-runs with LFXT_CLK
78
        mov    #0x000A, r14
79
        call   #WAIT_FUNC
80
 
81
        mov    #0x0004, r15
82
 
83
 
84
        /* ----------------------         END OF TEST        --------------- */
85
end_of_test:
86
        nop
87
        br #0xffff
88
 
89
 
90
        /* ----------------------    FUNCTIONS    --------------- */
91
 
92
IRQ00_ROUTINE:
93
        add #0x5678, r10
94
        LPM_CUSTOM_exit
95
        reti
96
 
97
 
98
        /* ----------------------         INTERRUPT VECTORS  --------------- */
99
 
100
.section .vectors, "a"
101
.word IRQ00_ROUTINE      ; Interrupt  0 (lowest priority)    
102
.word end_of_test        ; Interrupt  1                      
103
.word end_of_test        ; Interrupt  2                      
104
.word end_of_test        ; Interrupt  3                      
105
.word end_of_test        ; Interrupt  4                      
106
.word end_of_test        ; Interrupt  5                      
107
.word end_of_test        ; Interrupt  6                      
108
.word end_of_test        ; Interrupt  7                      
109
.word end_of_test        ; Interrupt  8                      
110
.word end_of_test        ; Interrupt  9                      
111
.word end_of_test        ; Interrupt 10                      Watchdog timer
112
.word end_of_test        ; Interrupt 11                      
113
.word end_of_test        ; Interrupt 12                      
114
.word end_of_test        ; Interrupt 13                      
115
.word end_of_test        ; Interrupt 14                      NMI
116
.word main               ; Interrupt 15 (highest priority)   RESET

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.