-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PATCH] m68knommu: create romvec.S for 68328
Create the 68328 romvec section in its own assembler file. It can be compiled in when required. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
- Loading branch information
Greg Ungerer
authored and
Linus Torvalds
committed
Jun 28, 2006
1 parent
873d889
commit 9a9bb6f
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* linux/arch/m68knommu/platform/68328/romvec.S | ||
* | ||
* 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> | ||
*/ | ||
|
||
#include <linux/config.h> | ||
|
||
.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 | ||
|