1*072aa173Sjdolecek /* $NetBSD: param.h,v 1.20 2019/01/07 22:00:31 jdolecek Exp $ */ 2ee733492Ssoren 3ee733492Ssoren /* 49b6bd2d9Srmind * Copyright (c) 1988 University of Utah. 5ee733492Ssoren * Copyright (c) 1992, 1993 6ee733492Ssoren * The Regents of the University of California. All rights reserved. 7ee733492Ssoren * 8ee733492Ssoren * This code is derived from software contributed to Berkeley by 9ee733492Ssoren * the Systems Programming Group of the University of Utah Computer 10ee733492Ssoren * Science Department and Ralph Campbell. 11ee733492Ssoren * 12ee733492Ssoren * Redistribution and use in source and binary forms, with or without 13ee733492Ssoren * modification, are permitted provided that the following conditions 14ee733492Ssoren * are met: 15ee733492Ssoren * 1. Redistributions of source code must retain the above copyright 16ee733492Ssoren * notice, this list of conditions and the following disclaimer. 17ee733492Ssoren * 2. Redistributions in binary form must reproduce the above copyright 18ee733492Ssoren * notice, this list of conditions and the following disclaimer in the 19ee733492Ssoren * documentation and/or other materials provided with the distribution. 20aad01611Sagc * 3. Neither the name of the University nor the names of its contributors 21aad01611Sagc * may be used to endorse or promote products derived from this software 22aad01611Sagc * without specific prior written permission. 23aad01611Sagc * 24aad01611Sagc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25aad01611Sagc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26aad01611Sagc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27aad01611Sagc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28aad01611Sagc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29aad01611Sagc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30aad01611Sagc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31aad01611Sagc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32aad01611Sagc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33aad01611Sagc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34aad01611Sagc * SUCH DAMAGE. 35aad01611Sagc */ 364c547143Ssoren 37afb7d3cbStsutsui #ifndef _COBALT_PARAM_H_ 38afb7d3cbStsutsui #define _COBALT_PARAM_H_ 39afb7d3cbStsutsui 404c547143Ssoren #define _MACHINE cobalt 414c547143Ssoren #define MACHINE "cobalt" 420965b625Stsutsui 430965b625Stsutsui #include <mips/mips_param.h> 444c547143Ssoren 454c547143Ssoren #ifdef _KERNEL 464c547143Ssoren #ifndef _LOCORE 474c547143Ssoren 485ebcd1bfSgdamore void delay(int n); 495ebcd1bfSgdamore #define DELAY delay 504c547143Ssoren 51278498c0Ssoren #include <machine/intr.h> 52278498c0Ssoren 534c547143Ssoren #endif /* _LOCORE */ 544c547143Ssoren #endif /* _KERNEL */ 55afb7d3cbStsutsui 56afb7d3cbStsutsui #endif /* !_COBALT_PARAM_H_ */ 57