comparison packages/cygmon/current/misc/board.h @ 76:435cced73e2f ecos-v1_3_1-release

eCos v1.3.1 merged from eCos master repository on 2000-03-27-23:22:51-BST
author jlarmour
date Tue, 28 Mar 2000 14:10:45 +0000
parents
children 02ea4320376c
comparison
equal deleted inserted replaced
75:41bf073c0c32 76:435cced73e2f
1 #ifndef __CYGMON_BOARD_H__
2 #define __CYGMON_BOARD_H__
3 //==========================================================================
4 //
5 // board.h
6 //
7 // Cygmon board/platform configuration file
8 //
9 //==========================================================================
10 //####COPYRIGHTBEGIN####
11 //
12 // -------------------------------------------
13 // The contents of this file are subject to the Red Hat eCos Public License
14 // Version 1.1 (the "License"); you may not use this file except in
15 // compliance with the License. You may obtain a copy of the License at
16 // http://www.redhat.com/
17 //
18 // Software distributed under the License is distributed on an "AS IS"
19 // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
20 // License for the specific language governing rights and limitations under
21 // the License.
22 //
23 // The Original Code is eCos - Embedded Configurable Operating System,
24 // released September 30, 1998.
25 //
26 // The Initial Developer of the Original Code is Red Hat.
27 // Portions created by Red Hat are
28 // Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
29 // All Rights Reserved.
30 // -------------------------------------------
31 //
32 //####COPYRIGHTEND####
33 //==========================================================================
34 //#####DESCRIPTIONBEGIN####
35 //
36 // Author(s): gthomas
37 // Contributors: gthomas
38 // Date: 1999-10-20
39 // Purpose:
40 // Description:
41 //
42 //
43 //####DESCRIPTIONEND####
44 //
45 //=========================================================================
46 // Hardware/platform/configuration specifics
47
48 #include <pkgconf/hal.h>
49 #include <pkgconf/cygmon.h>
50
51 #define HAVE_FLOAT_REGS 0
52 #define HAVE_DOUBLE_REGS 0
53 #define HAVE_CACHE 0 // FIXME
54 #define HAVE_USAGE 0 // FIXME
55 #define USE_CYGMON_PROTOTYPES 1
56 #define NOMAIN 1
57 #define CYGMON_SYSTEM_SERVICES 0 // Not used, fall back to BSP support
58 #ifdef CYGDAT_CYGMON_USE_HELP
59 #define USE_HELP 1
60 #endif
61
62 // For breakpoint support
63 #define NO_MALLOC 1
64 #define MAX_BP_NUM 8
65 #include "cpu_info.h"
66 #define TRAP_SIZE 4
67 #define __set_breakpoint set_breakpoint
68 #define __remove_breakpoint clear_breakpoint
69 #define __write_mem_safe memcpy
70 #define _breakinst bsp_breakinsn
71
72 #endif // __CYGMON_BOARD_H__