source: rtems/cpukit/score/cpu/m32r/rtems/score/cpu_asm.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 * @file
3 *
4 * @brief Intel M32R Assembly File
5 *
6 * Very loose template for an include file for the cpu_asm.? file
7 * if it is implemented as a ".S" file (preprocessed by cpp) instead
8 * of a ".s" file (preprocessed by gm4 or gasp).
9 */
10
11/*
12 *  COPYRIGHT (c) 1989-1999.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.org/license/LICENSE.
18 *
19 */
20
21#ifndef _RTEMS_SCORE_CPU_ASM_H
22#define _RTEMS_SCORE_CPU_ASM_H
23
24/* pull in the generated offsets */
25
26#include <rtems/score/offsets.h>
27
28/*
29 * Hardware General Registers
30 */
31
32/* put something here */
33
34/*
35 * Hardware Floating Point Registers
36 */
37
38/* put something here */
39
40/*
41 * Hardware Control Registers
42 */
43
44/* put something here */
45
46/*
47 * Calling Convention
48 */
49
50/* put something here */
51
52/*
53 * Temporary registers
54 */
55
56/* put something here */
57
58/*
59 * Floating Point Registers - SW Conventions
60 */
61
62/* put something here */
63
64/*
65 * Temporary floating point registers
66 */
67
68/* put something here */
69
70#endif
71
72/* end of file */
Note: See TracBrowser for help on using the repository browser.