diff options
author | Nick Clifton <nickc@redhat.com> | 1998-01-08 11:12:39 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1998-01-08 11:12:39 +0000 |
commit | 3a9c3d120fe4b7cd24f75f275e4b1034577ce056 (patch) | |
tree | b0c06fea2896a37889cdb272d9acbe476689e6e1 /gdb/rdi-share/drivers.c | |
parent | d7ab10784a26a2d5f2174afa9c17450851abbb75 (diff) | |
download | gdb-3a9c3d120fe4b7cd24f75f275e4b1034577ce056.zip gdb-3a9c3d120fe4b7cd24f75f275e4b1034577ce056.tar.gz gdb-3a9c3d120fe4b7cd24f75f275e4b1034577ce056.tar.bz2 |
Applied patches from Tony.Thompson@arm.com to implement the Angel remote
debugging interface and resurrected associated RDI files.
Diffstat (limited to 'gdb/rdi-share/drivers.c')
-rw-r--r-- | gdb/rdi-share/drivers.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gdb/rdi-share/drivers.c b/gdb/rdi-share/drivers.c new file mode 100644 index 0000000..ba0eee5 --- /dev/null +++ b/gdb/rdi-share/drivers.c @@ -0,0 +1,34 @@ +/* + * Copyright (C) 1995 Advanced RISC Machines Limited. All rights reserved. + * + * This software may be freely used, copied, modified, and distributed + * provided that the above copyright notice is preserved in all copies of the + * software. + */ + +/* -*-C-*- + * + * $Revision$ + * $Date$ + * + * + * drivers.c - declares a NULL terminated list of device driver + * descriptors supported by the host. + */ +#include <stdio.h> + +#include "drivers.h" + +extern DeviceDescr angel_SerialDevice; +extern DeviceDescr angel_SerparDevice; +extern DeviceDescr angel_EthernetDevice; + +DeviceDescr *devices[] = +{ + &angel_SerialDevice, + &angel_SerparDevice, + &angel_EthernetDevice, + NULL +}; + +/* EOF drivers.c */ |