/* tlb.h, Copyright (c) by Eckart Zitzler, 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/Memory/mips/tlb.h,v $ Author(s): Eckart Zitzler Affiliation: ETH Zuerich, TIK Version: $Revision: 1.5 $ Creation Date: Last Date of Change: $Date: 1999/12/13 21:48:32 $ by: $Author: ruf $ $Log: tlb.h,v $ Revision 1.5 1999/12/13 21:48:32 ruf GNU General Public Licence Update Revision 1.4 1999/10/27 04:51:08 jeker *** empty log message *** Revision 1.3 1999/10/21 20:22:29 jeker first commit for the R4k support Revision 1.2 1997/03/09 20:50:04 gfa changed function names to lower case * Revision 1.1 1997/02/12 16:58:21 zitzler * Initial revision * */ #ifndef _TLB_H_ #define _TLB_H_ #include "Topsy.h" void setR3kTLBEntry(Register TLBEntryLow, Register TLBEntryHigh, Register Index); void setR4kTLBEntry(Register TLBEntryLow0, Register TLBEntryLo1, Register TLBEntryHigh, Register Index); void setR4kTLBWired(Register TLBWired); #endif