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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [hal/] [h8300/] [arch/] [v2_0/] [include/] [h8300_stub.h] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
#ifndef CYGONCE_HAL_H8300_STUB_H
2
#define CYGONCE_HAL_H8300_STUB_H
3
//========================================================================
4
//
5
//      h8300_stub.h
6
//
7
//      H8/300-specific definitions for generic stub
8
//
9
//========================================================================
10
//####ECOSGPLCOPYRIGHTBEGIN####
11
// -------------------------------------------
12
// This file is part of eCos, the Embedded Configurable Operating System.
13
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
14
//
15
// eCos is free software; you can redistribute it and/or modify it under
16
// the terms of the GNU General Public License as published by the Free
17
// Software Foundation; either version 2 or (at your option) any later version.
18
//
19
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
20
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
21
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
22
// for more details.
23
//
24
// You should have received a copy of the GNU General Public License along
25
// with eCos; if not, write to the Free Software Foundation, Inc.,
26
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
27
//
28
// As a special exception, if other files instantiate templates or use macros
29
// or inline functions from this file, or you compile this file and link it
30
// with other works to produce a work based on this file, this file does not
31
// by itself cause the resulting work to be covered by the GNU General Public
32
// License. However the source code for this file must still be made available
33
// in accordance with section (3) of the GNU General Public License.
34
//
35
// This exception does not invalidate any other reasons why a work based on
36
// this file might be covered by the GNU General Public License.
37
//
38
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
39
// at http://sources.redhat.com/ecos/ecos-license/
40
// -------------------------------------------
41
//####ECOSGPLCOPYRIGHTEND####
42
//========================================================================
43
//#####DESCRIPTIONBEGIN####
44
//
45
// Author(s):     yoshinori sato
46
// Contributors:  yoshinori sato
47
// Date:          2002-02-13
48
// Purpose:       
49
// Description:   H8/300-specific definitions for generic stub
50
// Usage:         
51
//
52
//####DESCRIPTIONEND####
53
//
54
//========================================================================
55
 
56
#ifdef __cplusplus
57
extern "C" {
58
#endif
59
 
60
#define NUMREGS    32
61
 
62
#define REGSIZE( _x_ ) (4)
63
 
64
typedef unsigned long target_register_t;
65
 
66
enum regnames {
67
  ER0,ER1,ER2,ER3,ER4,ER5,ER6,
68
  SP, PC, CCR
69
};
70
 
71
typedef enum regnames regnames_t;
72
 
73
/* Given a trap value TRAP, return the corresponding signal. */
74
extern int __computeSignal (unsigned int trap_number);
75
 
76
/* Return the SPARC trap number corresponding to the last-taken trap. */
77
extern int __get_trap_number (void);
78
 
79
/* Return the currently-saved value corresponding to register REG. */
80
extern target_register_t get_register (regnames_t reg);
81
 
82
/* Store VALUE in the register corresponding to WHICH. */
83
extern void put_register (regnames_t which, target_register_t value);
84
 
85
/* Set the currently-saved pc register value to PC. This also updates NPC
86
   as needed. */
87
extern void set_pc (target_register_t pc);
88
 
89
/* Set things up so that the next user resume will execute one instruction.
90
   This may be done by setting breakpoints or setting a single step flag
91
   in the saved user registers, for example. */
92
void __single_step (void);
93
 
94
/* Clear the single-step state. */
95
void __clear_single_step (void);
96
 
97
/* If the breakpoint we hit is in the breakpoint() instruction, return a
98
   non-zero value. */
99
extern int __is_breakpoint_function (void);
100
 
101
/* Skip the current instruction. */
102
extern void __skipinst (void);
103
 
104
extern void __install_breakpoints (void);
105
 
106
extern void __clear_breakpoints (void);
107
 
108
#ifdef __cplusplus
109
}   /* extern "C" */
110
#endif
111
 
112
#endif // ifndef CYGONCE_HAL_H8300_STUB_H

powered by: WebSVN 2.1.0

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