/* Copyright 1997 Acorn Computers Ltd
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
 * Copyright (c) 1988 Acorn Computers Ltd., Cambridge, England
 *
 */

#ifndef	__arm_fp_h
#define	__arm_fp_h
#define	__machine_fp_h		"arm"

/* This structure contains the per-user floating point registers
 * it is saved on the stack during a signal delivery, or saved
 * into the u area as the FP resource is switched between processes.
 */
struct fp_regs {
	int	fp_status;
	struct	fp_reg {
		int first, second, third;
	} fp_reg[8];
};

/*
 * defines for various SYSID bytes
 */
#define SYSIDFPE	0x00			/* software emulator */
#define SYSIDFPPC	0x80			/* FPPC/WE32206 */
#define SYSIDFPA10	0x81			/* FPA10 */

#endif/*__arm_fp_h*/

/* EOF fp.h */
