source: rtems/cpukit/score/cpu/v850/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 V850 Assembly File
5 * Very loose template for an include file for the cpu_asm.? file
6 * if it is implemented as a ".S" file (preprocessed by cpp) instead
7 * of a ".s" file (preprocessed by gm4 or gasp).
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2012.
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_CPU_ASM_H
20#define _RTEMS_SCORE_CPU_ASM_H
21
22/* pull in the generated offsets */
23
24#include <rtems/score/offsets.h>
25
26/*
27 * Hardware General Registers
28 */
29
30/* put something here */
31
32/*
33 * Hardware Floating Point Registers
34 */
35
36/* put something here */
37
38/*
39 * Hardware Control Registers
40 */
41
42/* put something here */
43
44/*
45 * Calling Convention
46 */
47
48/* put something here */
49
50/*
51 * Temporary registers
52 */
53
54/* put something here */
55
56/*
57 * Floating Point Registers - SW Conventions
58 */
59
60/* put something here */
61
62/*
63 * Temporary floating point registers
64 */
65
66/* put something here */
67
68#endif
69
70/* end of file */
Note: See TracBrowser for help on using the repository browser.