diff options
author | Greg Ungerer <gerg@uclinux.org> | 2014-08-21 13:53:51 +0200 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2014-09-29 01:18:35 +0200 |
commit | 18cb3faf6fc72ccfc2965aeec9e04fa7b0047c4c (patch) | |
tree | 6aaa5b97033fb1ad5697752eaf3571ca475de0f0 /arch/m68k/68000/romvec.S | |
parent | m68k: fix crufty ColdFire intro comments (diff) | |
download | linux-18cb3faf6fc72ccfc2965aeec9e04fa7b0047c4c.tar.xz linux-18cb3faf6fc72ccfc2965aeec9e04fa7b0047c4c.zip |
m68k: move non-mmu 68000 platform code
The non-mmu 68000 specific code is inconsistently placed under a directory
named "platform". Move it to arch/m68k/ along with the other platform and
machine directories.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/68000/romvec.S')
-rw-r--r-- | arch/m68k/68000/romvec.S | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/m68k/68000/romvec.S b/arch/m68k/68000/romvec.S new file mode 100644 index 000000000000..15c70cd6453f --- /dev/null +++ b/arch/m68k/68000/romvec.S @@ -0,0 +1,35 @@ +/* + * romvec.S - Vector table for 68000 cpus + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file COPYING in the main directory of this archive + * for more details. + * + * Copyright 1996 Roman Zippel + * Copyright 1999 D. Jeff Dionne <jeff@rt-control.com> + * Copyright 2006 Greg Ungerer <gerg@snapgear.com> + */ + +.global _start +.global _buserr +.global trap +.global system_call + +.section .romvec + +e_vectors: +.long CONFIG_RAMBASE+CONFIG_RAMSIZE-4, _start, buserr, trap +.long trap, trap, trap, trap +.long trap, trap, trap, trap +.long trap, trap, trap, trap +.long trap, trap, trap, trap +.long trap, trap, trap, trap +.long trap, trap, trap, trap +.long trap, trap, trap, trap +/* TRAP #0-15 */ +.long system_call, trap, trap, trap +.long trap, trap, trap, trap +.long trap, trap, trap, trap +.long trap, trap, trap, trap +.long 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + |