aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/MSP430/chcoreasm.s
blob: 8c42d0856412de4ab33b87609d5571355079e6e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
    ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
                 2011,2012,2013 Giovanni Di Sirio.

    This file is part of ChibiOS/RT.

    ChibiOS/RT is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    ChibiOS/RT 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "chconf.h"

#define FALSE 0
#define TRUE 1

        .text
        .p2align 1, 0
        .weak   _port_switch
_port_switch:
        push    r11
        push    r10
        push    r9
        push    r8
        push    r7
        push    r6
        push    r5
        push    r4
        mov r1, 6(r14)
        mov 6(r15), r1
        pop     r4
        pop     r5
        pop     r6
        pop     r7
        pop     r8
        pop     r9
        pop     r10
        pop     r11
        ret

        .p2align 1, 0
        .weak   _port_thread_start
_port_thread_start:
#if CH_DBG_SYSTEM_STATE_CHECK
        call    #dbg_check_unlock
#endif
        eint
        mov     r11, r15
        call    r10
        call    #chThdExit
        ; Falls into _port_halt

        .p2align 1, 0
        .weak   _port_halt
_port_halt:
        dint
.L1:    jmp     .L1