RTEMS 7.0-rc1
Loading...
Searching...
No Matches
tm27.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0+-with-RTEMS-exception */
2
11/*
12 * tm27.h
13 *
14 * The license and distribution terms for this file may be
15 * found in the file LICENSE in this distribution or at
16 * http://www.rtems.org/license/LICENSE.
17 */
18
19#ifndef _RTEMS_TMTEST27
20#error "This is an RTEMS internal file you must not include directly."
21#endif
22
23#ifndef __tm27_h
24#define __tm27_h
25
26/*
27 * Define the interrupt mechanism for Time Test 27
28 */
29
30#define MUST_WAIT_FOR_INTERRUPT 0
31
32#define Install_tm27_vector(handler) (void) handler
33
34#define Cause_tm27_intr() __asm__ volatile("int $0x90" : :);
35
36#define Clear_tm27_intr() /* empty */
37
38#define Lower_tm27_intr() /* empty */
39
40#endif