prism2.device: Compiler delint
[AROS.git] / arch / arm-linux / processor / arch_intern.h
blobb8b416a5b8c3f340a7e36683fb6d3de44507a67c
1 #define BUFFER_SIZE 256
3 struct LinuxArmProcessor
5 ULONG Implementer;
6 ULONG Arch;
7 ULONG Part;
8 ULONG Version;
9 ULONG Features;
10 const char *Model;
13 /* Some of feature flags */
14 #define FF_VFP 0x0001
15 #define FF_VFPv3 0x0002
16 #define FF_NEON 0x0004
18 struct LibCInterface
20 void *(*fopen)(const char *name, const char *mode);
21 int (*fclose)(void *file);
22 char *(*fgets)(char *s, int n, void *stream);