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

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [src/] [two-op_bis.s43] - Blame information for rev 2

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 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
/*                 TWO-OPERAND ARITHMETIC: BIS[.B] INSTRUCTION               */
25
/*---------------------------------------------------------------------------*/
26
/* Test the BIS[.B] instruction.                                             */
27
/*===========================================================================*/
28
 
29
 
30
.global main
31
 
32
main:
33
        /* -------------- TEST INSTRUCTION IN WORD MODE ------------------- */
34
 
35
        mov     #0x0000, r2
36
        mov     #0xaaaa, r4
37
        mov     #0x3333, r5
38
        bis          r4, r5        ;# Set bits r4 | r5 (0xaaaa | 0x3333=0xbbbb)
39
 
40
        mov     #0x0001, r2
41
        mov     #0x5555, r4
42
        mov     #0xcccc, r6
43
        bis          r4, r6        ;# Set bits r4 | r6 (0x5555 | 0xcccc=0xdddd)
44
 
45
        mov     #0x1000, r15
46
 
47
 
48
        /* -------------- TEST INSTRUCTION IN BYTE MODE ------------------- */
49
 
50
        mov     #0x0000, r2
51
        mov     #0x4444, r4
52
        mov     #0x1111, r5
53
        bis.b        r4, r5        ;# Set bits r4 | r5 (0x4444 | 0x1111=0x0055)
54
 
55
        mov     #0x0001, r2
56
        mov     #0x8888, r4
57
        mov     #0x2222, r6
58
        bis.b        r4, r6        ;# Set bits r4 | r6 (0x8888 | 0x2222=0x00aa)
59
 
60
        mov     #0x2000, r15
61
 
62
 
63
        /* ------------------ TEST FLAGS IN WORD MODE ---------------------- */
64
        #
65
        # Make sure Flags are unaffected by instruction
66
        #
67
 
68
        mov     #0x0005, r2        ;# V=0, N=1, Z=0, C=1
69
        mov     #0x0aaa, r4        ;#
70
        mov     #0x0666, r5        ;#
71
        bis          r4, r5        ;# Set bits r4 | r5 (0x0aaa | 0x0666=0x0eee)
72
        mov     #0x3000, r15
73
 
74
        mov     #0x0102, r2        ;# V=1, N=0, Z=1, C=0
75
        mov     #0x0aaa, r4        ;#
76
        mov     #0x0666, r5        ;#
77
        bis          r4, r5        ;# Set bits r4 | r5 (0x0aaa | 0x0666=0x0eee)
78
        mov     #0x3001, r15
79
 
80
 
81
        /* ------------------ TEST FLAGS IN BYTE MODE --------------------- */
82
        #
83
        # Make sure Flags are unaffected by instruction
84
        #
85
 
86
        mov     #0x0005, r2        ;# V=0, N=1, Z=0, C=1
87
        mov     #0x550a, r4        ;#
88
        mov     #0x6606, r5        ;#
89
        bis.b        r4, r5        ;# Set bits r4 | r5 (0x000a | 0x0006=0x000e)
90
        mov     #0x4000, r15
91
 
92
        mov     #0x0102, r2        ;# V=1, N=0, Z=1, C=0
93
        mov     #0x330a, r4        ;#
94
        mov     #0x9906, r5        ;#
95
        bis.b        r4, r5        ;# Set bits r4 | r5 (0x000a | 0x0006=0x000e)
96
        mov     #0x4001, r15
97
 
98
 
99
 
100
        /* ----------------------         END OF TEST        --------------- */
101
        mov      #0x5000, r15
102
end_of_test:
103
        nop
104
        br #0xffff
105
 
106
 
107
        /* ----------------------         INTERRUPT VECTORS  --------------- */
108
 
109
.section .vectors, "a"
110
.word end_of_test  ; Interrupt  0 (lowest priority)    
111
.word end_of_test  ; Interrupt  1                      
112
.word end_of_test  ; Interrupt  2                      
113
.word end_of_test  ; Interrupt  3                      
114
.word end_of_test  ; Interrupt  4                      
115
.word end_of_test  ; Interrupt  5                      
116
.word end_of_test  ; Interrupt  6                      
117
.word end_of_test  ; Interrupt  7                      
118
.word end_of_test  ; Interrupt  8                      
119
.word end_of_test  ; Interrupt  9                      
120
.word end_of_test  ; Interrupt 10                      Watchdog timer
121
.word end_of_test  ; Interrupt 11                      
122
.word end_of_test  ; Interrupt 12                      
123
.word end_of_test  ; Interrupt 13                      
124
.word end_of_test  ; Interrupt 14                      NMI
125
.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.