Greg Ungerer | 9a9bb6f | 2006-06-28 15:58:18 +1000 | [diff] [blame] | 1 | /* |
Luis Alves | 99e0837 | 2012-12-04 23:04:49 +0000 | [diff] [blame] | 2 | * romvec.S - Vector table for 68000 cpus |
Greg Ungerer | 9a9bb6f | 2006-06-28 15:58:18 +1000 | [diff] [blame] | 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 | |
Greg Ungerer | 9a9bb6f | 2006-06-28 15:58:18 +1000 | [diff] [blame] | 13 | .global _start |
| 14 | .global _buserr |
| 15 | .global trap |
| 16 | .global system_call |
| 17 | |
| 18 | .section .romvec |
| 19 | |
| 20 | e_vectors: |
| 21 | .long CONFIG_RAMBASE+CONFIG_RAMSIZE-4, _start, buserr, trap |
| 22 | .long trap, trap, trap, trap |
| 23 | .long trap, trap, trap, 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 | /* TRAP #0-15 */ |
| 30 | .long system_call, trap, trap, trap |
| 31 | .long trap, trap, trap, trap |
| 32 | .long trap, trap, trap, trap |
| 33 | .long trap, trap, trap, trap |
| 34 | .long 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 |
| 35 | |