2008-06-06 Paul Pluzhnikov <ppluzhnikov@google.com>
[deliverable/binutils-gdb.git] / sim / m32c / int.c
CommitLineData
d45a4bef
JB
1/* int.c --- M32C interrupt handling.
2
9b254dd1 3Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc.
d45a4bef
JB
4Contributed by Red Hat, Inc.
5
6This file is part of the GNU simulators.
7
4744ac1b
JB
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 3 of the License, or
11(at your option) any later version.
d45a4bef 12
4744ac1b
JB
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
d45a4bef
JB
17
18You should have received a copy of the GNU General Public License
4744ac1b 19along with this program. If not, see <http://www.gnu.org/licenses/>. */
d45a4bef
JB
20
21
22#include "int.h"
23#include "cpu.h"
24#include "mem.h"
25
26void
27trigger_fixed_interrupt (int addr)
28{
29 int s = get_reg (sp);
30 int f = get_reg (flags);
31 int p = get_reg (pc);
32
33 if (A16)
34 {
35 s -= 4;
36 put_reg (sp, s);
37 mem_put_hi (s, p);
38 mem_put_qi (s + 2, f);
39 mem_put_qi (s + 3, ((f >> 4) & 0x0f) | (p >> 16));
40 }
41 else
42 {
43 s -= 6;
44 put_reg (sp, s);
45 mem_put_si (s, p);
46 mem_put_hi (s + 4, f);
47 }
48 put_reg (pc, mem_get_psi (addr));
49 set_flags (FLAGBIT_U | FLAGBIT_I | FLAGBIT_D, 0);
50}
51
52void
53trigger_based_interrupt (int vector)
54{
55 int addr = get_reg (intb) + vector * 4;
56 if (vector <= 31)
57 set_flags (FLAGBIT_U, 0);
58 trigger_fixed_interrupt (addr);
59}
This page took 0.10534 seconds and 4 git commands to generate.