source: rtems/c/src/lib/libcpu/sh/sh7750/include/rtems/score/ispsh7750.h @ 12ae6d9e

4.104.114.84.95
Last change on this file since 12ae6d9e was 12ae6d9e, checked in by Joel Sherrill <joel.sherrill@…>, on 10/15/01 at 18:01:12

2001-10-15 Ralf Corsepius <corsepiu@…>

  • include/sh4uart.h: move to include/sh/sh4uart.h.
  • include/ispsh7750.h: move to include/rtems/score/ispsh7750.h.
  • include/iosh7750.h: move include/rtems/score/iosh7750.h.
  • include/sh7750_regs.h: move to include/rtems/score/sh7750_regs.h.
  • include/rtems/score/ipl.h: move to include/rtems/score/ipl.h.
  • include/rtems/score/sh4_regs.h: Reintroduce from Alexandra Kossovsky's original sources.
  • include/Makefile.am: reflect changes above, remove EXTRA_DIST, require automake 1.5.
  • sci/Makefile.am: Disable compilation of console.c.
  • sci/sh4uart.c: include <sh/sh4uart.h>, add SH7750_SCSMR_CHK_S, remove SH4_CPU_HZ_Frequency;
  • score/isph7750.c: Remove #if !defined(sh7750), include sh4_regs.h.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 *  This include file contains information pertaining to the Hitachi
3 *  SH7750 processor.
4 *
5 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
6 *  Author: Victor V. Vengerov <vvv@oktet.ru>
7 *
8 *  Based on work of:
9 *  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and
10 *           Bernd Becker (becker@faw.uni-ulm.de)
11 *
12 *  COPYRIGHT (c) 1997-1998, FAW Ulm, Germany
13 *
14 *  This program is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 *
19 *  COPYRIGHT (c) 1998.
20 *  On-Line Applications Research Corporation (OAR).
21 *
22 *  The license and distribution terms for this file may be
23 *  found in the file LICENSE in this distribution or at
24 *  http://www.OARcorp.com/rtems/license.html.
25 *
26 *  Modified to reflect isp entries for sh7045 processor:
27 *  John M. Mills (jmills@tga.com)
28 *  TGA Technologies, Inc.
29 *  100 Pinnacle Way, Suite 140
30 *  Norcross, GA 30071 U.S.A.
31 * 
32 *
33 *  This modified file may be copied and distributed in accordance
34 *  the above-referenced license. It is provided for critique and
35 *  developmental purposes without any warranty nor representation
36 *  by the authors or by TGA Technologies.
37 *
38 *  $Id$
39 */
40
41#ifndef __CPU_ISPS_H
42#define __CPU_ISPS_H
43
44#ifdef __cplusplus
45extern "C" {
46#endif
47
48#include <rtems/score/shtypes.h>
49
50/* dummy ISP */
51extern void _dummy_isp( void );
52
53extern void __ISR_Handler( unsigned32 vector );
54
55/* This variable contains VBR value used to pass control when debug, error
56 * or virtual memory exceptions occured.
57 */
58extern void *_VBR_Saved;
59
60#ifdef __cplusplus
61}
62#endif
63
64#endif
Note: See TracBrowser for help on using the repository browser.