/* IOArch.h, Copyright 1999 (c) by Claudio Jeker, Swiss Federal Institute of Technology, Computer Engineering and Networks Laboratory. TOPSY -- A Teachable Operating System. Implementation of a tiny and simple micro kernel for teaching purposes. For further information, please visit http://www.tik.ee.ethz.ch/~topsy This software is provided under the terms of the GNU General Public Licence. A full copy of the GNU GPL is provided in the file COPYING found in the development root of Topsy. */ /* File: $Source: /usr/drwho/vault/cvs/topsy/Topsy/IO/unix/IOArch.h,v $ Author(s): Claudio Jeker Affiliation: ETH Zuerich, TIK Version: $Revision: 1.4 $ Creation Date: 1999/04/08 Last Date of Change: $Date: 1999/12/13 21:48:28 $ by: $Author: ruf $ $Log: IOArch.h,v $ Revision 1.4 1999/12/13 21:48:28 ruf GNU General Public Licence Update Revision 1.3 1999/06/06 20:54:49 jeker putting everything together for Topsy 2.0 Revision 1.2 1999/05/13 17:05:33 jeker Initial revision Revision 1.1 1999/04/08 11:40:10 jeker added some new files, modified some others for unix port */ #ifndef __IOARCH_H__ #define __IOARCH_H__ /* device numbers */ #define IO_UNIXCONSOLE 0 #define IO_LOOPBACK 1 #define IO_CONSOLE IO_UNIXCONSOLE /* alias */ #define IO_FPGA_COMM IO_LOOPBACK #define IO_DEVCOUNT 2 #endif