diff options
author | Petr Stehlik <pstehlik@sophics.cz> | 2008-11-18 15:02:18 -0500 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-03-16 14:10:41 -0400 |
commit | 65cd577d5e61043d1c1aec5812dea8a5c834652d (patch) | |
tree | 7823e6b01e354717dc5340e6231f48a357a6de9e /arch/m68k/include | |
parent | 93ff9542462ba5074fb6b6cd9e27c4fb04d452ec (diff) |
m68k/atari: Initial ARAnyM support
Add improved support for running under the ARAnyM emulator
(Atari Running on Any Machine - http://aranym.org/).
[michael, geert: Cleanups and updates]
Signed-off-by: Petr Stehlik <pstehlik@sophics.cz>
Signed-off-by: Michael Schmitz <schmitz@debian.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/include')
-rw-r--r-- | arch/m68k/include/asm/natfeat.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/natfeat.h b/arch/m68k/include/asm/natfeat.h new file mode 100644 index 000000000000..a3521b80c3b9 --- /dev/null +++ b/arch/m68k/include/asm/natfeat.h | |||
@@ -0,0 +1,22 @@ | |||
1 | /* | ||
2 | * ARAnyM hardware support via Native Features (natfeats) | ||
3 | * | ||
4 | * Copyright (c) 2005 Petr Stehlik of ARAnyM dev team | ||
5 | * | ||
6 | * This software may be used and distributed according to the terms of | ||
7 | * the GNU General Public License (GPL), incorporated herein by reference. | ||
8 | */ | ||
9 | |||
10 | #ifndef _NATFEAT_H | ||
11 | #define _NATFEAT_H | ||
12 | |||
13 | long nf_get_id(const char *feature_name); | ||
14 | long nf_call(long id, ...); | ||
15 | |||
16 | void nf_init(void); | ||
17 | void nf_shutdown(void); | ||
18 | |||
19 | void nfprint(const char *fmt, ...) | ||
20 | __attribute__ ((format (printf, 1, 2))); | ||
21 | |||
22 | # endif /* _NATFEAT_H */ | ||