source: rtems/c/src/lib/libbsp/m68k/mcf5329/include/tm27.h @ e9db9661

4.9.1
Last change on this file since e9db9661 was 6b56ec3, checked in by Joel Sherrill <joel.sherrill@…>, on 06/20/08 at 14:58:34

2008-06-20 Matthew Riek <matthew.riek@…>

  • ChangeLog?, Makefile.am, README, bsp_specs, configure.ac, gdb-init, preinstall.am, clock/clock.c, console/console.c, include/bsp.h, include/bspopts.h.in, include/coverhd.h, include/tm27.h, network/network.c, start/start.S, startup/bspclean.c, startup/bspstart.c, startup/cfinit.c, startup/init5329.c, startup/linkcmds, startup/linkcmdsflash, timer/timer.c: New files.
  • Property mode set to 100644
File size: 648 bytes
RevLine 
[6b56ec3]1/*
2 *  The license and distribution terms for this file may be
3 *  found in the file LICENSE in this distribution or at
4 *  http://www.rtems.com/license/LICENSE.
5 */
6
7#ifndef _RTEMS_TMTEST27
8#error "This is an RTEMS internal file you must not include directly."
9#endif
10
11#ifndef __tm27_h
12#define __tm27_h
13
14/*
15 *  Stuff for Time Test 27
16 *  Don't bother with hardware -- just use a software-interrupt
17 */
18
19#define MUST_WAIT_FOR_INTERRUPT 0
20
21#define Install_tm27_vector( handler ) set_vector( (handler), 35, 1 )
22
23#define Cause_tm27_intr()       asm volatile ("trap #3");
24
25#define Clear_tm27_intr() /* empty */
26
27#define Lower_tm27_intr() /* empty */
28
29#endif
Note: See TracBrowser for help on using the repository browser.