11.1Stsutsui/* $NetBSD: vectors.h,v 1.1 2013/01/05 17:44:24 tsutsui Exp $ */ 21.1Stsutsui 31.1Stsutsui/* 41.1Stsutsui * Copyright (c) 1992 OMRON Corporation. 51.1Stsutsui * 61.1Stsutsui * This code is derived from software contributed to Berkeley by 71.1Stsutsui * OMRON Corporation. 81.1Stsutsui * 91.1Stsutsui * Redistribution and use in source and binary forms, with or without 101.1Stsutsui * modification, are permitted provided that the following conditions 111.1Stsutsui * are met: 121.1Stsutsui * 1. Redistributions of source code must retain the above copyright 131.1Stsutsui * notice, this list of conditions and the following disclaimer. 141.1Stsutsui * 2. Redistributions in binary form must reproduce the above copyright 151.1Stsutsui * notice, this list of conditions and the following disclaimer in the 161.1Stsutsui * documentation and/or other materials provided with the distribution. 171.1Stsutsui * 3. All advertising materials mentioning features or use of this software 181.1Stsutsui * must display the following acknowledgement: 191.1Stsutsui * This product includes software developed by the University of 201.1Stsutsui * California, Berkeley and its contributors. 211.1Stsutsui * 4. Neither the name of the University nor the names of its contributors 221.1Stsutsui * may be used to endorse or promote products derived from this software 231.1Stsutsui * without specific prior written permission. 241.1Stsutsui * 251.1Stsutsui * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 261.1Stsutsui * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 271.1Stsutsui * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 281.1Stsutsui * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 291.1Stsutsui * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 301.1Stsutsui * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 311.1Stsutsui * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 321.1Stsutsui * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 331.1Stsutsui * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 341.1Stsutsui * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 351.1Stsutsui * SUCH DAMAGE. 361.1Stsutsui * 371.1Stsutsui * @(#)vectors.h 8.1 (Berkeley) 6/10/93 381.1Stsutsui */ 391.1Stsutsui/* 401.1Stsutsui * Copyright (c) 1992, 1993 411.1Stsutsui * The Regents of the University of California. All rights reserved. 421.1Stsutsui * 431.1Stsutsui * This code is derived from software contributed to Berkeley by 441.1Stsutsui * OMRON Corporation. 451.1Stsutsui * 461.1Stsutsui * Redistribution and use in source and binary forms, with or without 471.1Stsutsui * modification, are permitted provided that the following conditions 481.1Stsutsui * are met: 491.1Stsutsui * 1. Redistributions of source code must retain the above copyright 501.1Stsutsui * notice, this list of conditions and the following disclaimer. 511.1Stsutsui * 2. Redistributions in binary form must reproduce the above copyright 521.1Stsutsui * notice, this list of conditions and the following disclaimer in the 531.1Stsutsui * documentation and/or other materials provided with the distribution. 541.1Stsutsui * 3. Neither the name of the University nor the names of its contributors 551.1Stsutsui * may be used to endorse or promote products derived from this software 561.1Stsutsui * without specific prior written permission. 571.1Stsutsui * 581.1Stsutsui * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 591.1Stsutsui * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 601.1Stsutsui * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 611.1Stsutsui * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 621.1Stsutsui * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 631.1Stsutsui * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 641.1Stsutsui * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 651.1Stsutsui * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 661.1Stsutsui * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 671.1Stsutsui * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 681.1Stsutsui * SUCH DAMAGE. 691.1Stsutsui * 701.1Stsutsui * @(#)vectors.h 8.1 (Berkeley) 6/10/93 711.1Stsutsui */ 721.1Stsutsui 731.1Stsutsui/* vectors.h */ 741.1Stsutsui/* by A.Fujita, Nov-18-1991 */ 751.1Stsutsui 761.1Stsutsui#define NVECTBL 0x400 /* size of vector table */ 771.1Stsutsui 781.1Stsutsui#define ILLGINST 0x010 /* Illegal Instruction */ 791.1Stsutsui#define TRACEVEC 0x024 /* Trace Vector offset */ 801.1Stsutsui#define NMIVEC 0x07c /* Level 7 Interrupt Auto Vector (NMI) offset */ 811.1Stsutsui#define EVTRAPF 0x0bc /* Trap #15 Instraction Vector */ 82