RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
or1k.h
Go to the documentation of this file.
1
5/*
6 * This file contains information pertaining to the OR1K processor.
7 *
8 * COPYRIGHT (c) 2014 Hesham ALMatary <heshamelmatary@gmail.com>
9 *
10 * Based on code with the following copyright...
11 * COPYRIGHT (c) 1989-1999, 2010.
12 * On-Line Applications Research Corporation (OAR).
13 *
14 * The license and distribution terms for this file may be
15 * found in the file LICENSE in this distribution or at
16 * http://www.rtems.org/license/LICENSE.
17 */
18
19#ifndef _RTEMS_SCORE_OR1K_H
20#define _RTEMS_SCORE_OR1K_H
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26/*
27 * This file contains the information required to build
28 * RTEMS for a particular member of the OR1K family.
29 * It does this by setting variables to indicate which
30 * implementation dependent features are present in a particular
31 * member of the family.
32 *
33 * This is a good place to list all the known CPU models
34 * that this port supports and which RTEMS CPU model they correspond
35 * to.
36 */
37
38 /*
39 * Define the name of the CPU family and specific model.
40 */
41
42#define CPU_NAME "OR1K"
43#define CPU_MODEL_NAME "OR1200"
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif /* _RTEMS_SCORE_OR1K_H */