source: rtems/c/src/lib/libbsp/m68k/uC5282/include/tm27.h @ 688696e4

4.104.114.84.95
Last change on this file since 688696e4 was 688696e4, checked in by Joel Sherrill <joel.sherrill@…>, on 03/12/07 at 11:18:23

2007-03-12 Joel Sherrill <joel@…>

  • clock/clock.c, console/console.c, include/bsp.h, include/coverhd.h, include/tm27.h, network/network.c, start/start.S, startup/bspclean.c, startup/bspstart.c, startup/init5282.c, startup/linkcmds, timer/timer.c: Correct license URL and/or fix mistake in copyright notice. Both of these mistakes appear to be from code submitted after these changes were made previously.
  • Property mode set to 100644
File size: 778 bytes
Line 
1/*
2 *  Author: W. Eric Norum <norume@aps.anl.gov>
3 *
4 *  COPYRIGHT (c) 2005.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 */
11
12#ifndef _RTEMS_TMTEST27
13#error "This is an RTEMS internal file you must not include directly."
14#endif
15
16#ifndef __tm27_h
17#define __tm27_h
18
19/*
20 *  Stuff for Time Test 27
21 *  Don't bother with hardware -- just use a software-interrupt
22 */
23
24#define MUST_WAIT_FOR_INTERRUPT 0
25
26#define Install_tm27_vector( handler ) set_vector( (handler), 35, 1 )
27
28#define Cause_tm27_intr()       asm volatile ("trap #3");
29
30#define Clear_tm27_intr() /* empty */
31
32#define Lower_tm27_intr() /* empty */
33
34#endif
Note: See TracBrowser for help on using the repository browser.