RTEMS 6.1-rc7
Loading...
Searching...
No Matches
tm27.h
Go to the documentation of this file.
1
9/*
10 * tm27.h
11 *
12 * The license and distribution terms for this file may be
13 * found in the file LICENSE in this distribution or at
14 * http://www.rtems.org/license/LICENSE.
15 */
16
17#ifndef _RTEMS_TMTEST27
18#error "This is an RTEMS internal file you must not include directly."
19#endif
20
21#ifndef __tm27_h
22#define __tm27_h
23
24/*
25 * Stuff for Time Test 27
26 * Don't bother with hardware -- just use a software-interrupt
27 */
28
29#define MUST_WAIT_FOR_INTERRUPT 0
30
31#define TM27_USE_VECTOR_HANDLER
32
33#define Install_tm27_vector( handler ) set_vector( (handler), 34, 1 )
34
35#define Cause_tm27_intr() asm volatile ("trap #2");
36
37#define Clear_tm27_intr() /* empty */
38
39#define Lower_tm27_intr() /* empty */
40
41#endif