RTEMS  5.1
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  * Define the interrupt mechanism for Time Test 27
26  */
27 
28 #define MUST_WAIT_FOR_INTERRUPT 0
29 
30 #define Install_tm27_vector(handler)
31 
32 #define Cause_tm27_intr() __asm__ volatile("int $0x90" : :);
33 
34 #define Clear_tm27_intr() /* empty */
35 
36 #define Lower_tm27_intr() /* empty */
37 
38 #endif