1*41474Smckusick /* 2*41474Smckusick * Copyright (c) 1988 University of Utah. 3*41474Smckusick * Copyright (c) 1982, 1986, 1990 The Regents of the University of California. 4*41474Smckusick * All rights reserved. 5*41474Smckusick * 6*41474Smckusick * This code is derived from software contributed to Berkeley by 7*41474Smckusick * the Systems Programming Group of the University of Utah Computer 8*41474Smckusick * Science Department. 9*41474Smckusick * 10*41474Smckusick * %sccs.include.redist.c% 11*41474Smckusick * 12*41474Smckusick * from: Utah $Hdr: trap.h 1.6 88/11/25$ 13*41474Smckusick * 14*41474Smckusick * @(#)trap.h 7.1 (Berkeley) 05/08/90 15*41474Smckusick */ 16*41474Smckusick 17*41474Smckusick /* 18*41474Smckusick * Trap type values 19*41474Smckusick */ 20*41474Smckusick 21*41474Smckusick #define T_BUSERR 0 22*41474Smckusick #define T_ADDRERR 1 23*41474Smckusick #define T_ILLINST 2 24*41474Smckusick #define T_ZERODIV 3 25*41474Smckusick #define T_CHKINST 4 26*41474Smckusick #define T_TRAPVINST 5 27*41474Smckusick #define T_PRIVINST 6 28*41474Smckusick #define T_TRACE 7 29*41474Smckusick #define T_MMUFLT 8 30*41474Smckusick #define T_SSIR 9 31*41474Smckusick #define T_FMTERR 10 32*41474Smckusick #define T_FPERR 11 33*41474Smckusick #define T_COPERR 12 34*41474Smckusick #define T_AST 13 35*41474Smckusick #define T_TRAP15 15 36