1 /*
2  * Copyright (C) 1995 Advanced RISC Machines Limited. All rights reserved.
3  *
4  * This software may be freely used, copied, modified, and distributed
5  * provided that the above copyright notice is preserved in all copies of the
6  * software.
7  */
8 
9 /* -*-C-*-
10  *
11  * $Revision: 1.3 $
12  *     $Date: 2004/12/27 14:00:54 $
13  *
14  *
15  * drivers.c - declares a NULL terminated list of device driver
16  *             descriptors supported by the host.
17  */
18 #include <stdio.h>
19 
20 #include "drivers.h"
21 
22 extern DeviceDescr angel_SerialDevice;
23 extern DeviceDescr angel_SerparDevice;
24 extern DeviceDescr angel_EthernetDevice;
25 
26 DeviceDescr *devices[] =
27 {
28     &angel_SerialDevice,
29     &angel_SerparDevice,
30     &angel_EthernetDevice,
31     NULL
32 };
33 
34 /* EOF drivers.c */
35