source: rtems/c/src/lib/libbsp/m68k/mcf5225x/include/tm27.h @ fe32208

4.104.115
Last change on this file since fe32208 was fe32208, checked in by Joel Sherrill <joel.sherrill@…>, on 04/05/10 at 17:06:57

2010-04-05 Thomas Znidar <t.znidar@…>

  • ChangeLog?, Makefile.am, README, bsp_specs, configure.ac, gdb-init, preinstall.am, clock/clock.c, console/console.c, console/debugio.c, include/bsp.h, include/tm27.h, make/custom/mcf5225x.cfg, start/start.S, startup/bspclean.c, startup/bspstart.c, startup/init5225x.c, startup/linkcmds, timer/timer.c: New files.
  • Property mode set to 100644
File size: 660 bytes
Line 
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 *  $Id$
7 */
8
9#ifndef _RTEMS_TMTEST27
10#error "This is an RTEMS internal file you must not include directly."
11#endif
12
13#ifndef __tm27_h
14#define __tm27_h
15
16/*
17 *  Stuff for Time Test 27
18 *  Don't bother with hardware -- just use a software-interrupt
19 */
20
21#define MUST_WAIT_FOR_INTERRUPT 0
22
23#define Install_tm27_vector( handler ) set_vector( (handler), 35, 1 )
24
25#define Cause_tm27_intr()       asm volatile ("trap #3");
26
27#define Clear_tm27_intr() /* empty */
28
29#define Lower_tm27_intr() /* empty */
30
31#endif
Note: See TracBrowser for help on using the repository browser.