diff options
| -rw-r--r-- | arch/m68knommu/platform/68328/romvec.S | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/arch/m68knommu/platform/68328/romvec.S b/arch/m68knommu/platform/68328/romvec.S new file mode 100644 index 000000000000..3e7fe1e14913 --- /dev/null +++ b/arch/m68knommu/platform/68328/romvec.S | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/m68knommu/platform/68328/romvec.S | ||
| 3 | * | ||
| 4 | * This file is subject to the terms and conditions of the GNU General Public | ||
| 5 | * License. See the file COPYING in the main directory of this archive | ||
| 6 | * for more details. | ||
| 7 | * | ||
| 8 | * Copyright 1996 Roman Zippel | ||
| 9 | * Copyright 1999 D. Jeff Dionne <jeff@rt-control.com> | ||
| 10 | * Copyright 2006 Greg Ungerer <gerg@snapgear.com> | ||
| 11 | */ | ||
| 12 | |||
| 13 | #include <linux/config.h> | ||
| 14 | |||
| 15 | .global _start | ||
| 16 | .global _buserr | ||
| 17 | .global trap | ||
| 18 | .global system_call | ||
| 19 | |||
| 20 | .section .romvec | ||
| 21 | |||
| 22 | e_vectors: | ||
| 23 | .long CONFIG_RAMBASE+CONFIG_RAMSIZE-4, _start, buserr, trap | ||
| 24 | .long trap, trap, trap, trap | ||
| 25 | .long trap, trap, trap, trap | ||
| 26 | .long trap, trap, trap, trap | ||
| 27 | .long trap, trap, trap, trap | ||
| 28 | .long trap, trap, trap, trap | ||
| 29 | .long trap, trap, trap, trap | ||
| 30 | .long trap, trap, trap, trap | ||
| 31 | /* TRAP #0-15 */ | ||
| 32 | .long system_call, trap, trap, trap | ||
| 33 | .long trap, trap, trap, trap | ||
| 34 | .long trap, trap, trap, trap | ||
| 35 | .long trap, trap, trap, trap | ||
| 36 | .long 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 | ||
| 37 | |||
