diff options
author | 2004-07-02 08:32:07 +0000 | |
---|---|---|
committer | 2004-07-02 08:32:07 +0000 | |
commit | 056ccec4786aba2badcda18a3a8dceb0315d1706 (patch) | |
tree | efc8aa87f25ec4df757524686921ba186cb725ef | |
parent | fill out error info into ret* regs upon failed syscall return (diff) | |
download | wireguard-openbsd-056ccec4786aba2badcda18a3a8dceb0315d1706.tar.xz wireguard-openbsd-056ccec4786aba2badcda18a3a8dceb0315d1706.zip |
Since these vector tables are not final tables, they don't need to be
page aligned.
-rw-r--r-- | sys/arch/m88k/m88k/vectors_88100.S | 3 | ||||
-rw-r--r-- | sys/arch/m88k/m88k/vectors_88110.S | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/m88k/m88k/vectors_88100.S b/sys/arch/m88k/m88k/vectors_88100.S index e3a77568f2e..959925f9814 100644 --- a/sys/arch/m88k/m88k/vectors_88100.S +++ b/sys/arch/m88k/m88k/vectors_88100.S @@ -1,4 +1,4 @@ -/* $OpenBSD: vectors_88100.S,v 1.1 2004/04/29 14:33:27 miod Exp $ */ +/* $OpenBSD: vectors_88100.S,v 1.2 2004/07/02 08:32:07 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1991, 1992 Carnegie Mellon University @@ -39,7 +39,6 @@ word UNKNOWN_HANDLER; word UNKNOWN_HANDLER; data - .align 4096 /* VBR points to page aligned list */ GLOBAL(vector_list) VECTOR(reset_handler) /* 00 */ VECTOR(interrupt_handler) /* 01 */ diff --git a/sys/arch/m88k/m88k/vectors_88110.S b/sys/arch/m88k/m88k/vectors_88110.S index f0c70865f12..6b6ac29a9f5 100644 --- a/sys/arch/m88k/m88k/vectors_88110.S +++ b/sys/arch/m88k/m88k/vectors_88110.S @@ -1,4 +1,4 @@ -/* $OpenBSD: vectors_88110.S,v 1.1 2004/04/29 14:33:27 miod Exp $ */ +/* $OpenBSD: vectors_88110.S,v 1.2 2004/07/02 08:32:07 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1991, 1992 Carnegie Mellon University @@ -39,7 +39,6 @@ word UNKNOWN_HANDLER; word UNKNOWN_HANDLER; data - .align 4096 /* VBR points to page aligned list */ GLOBAL(m88110_vector_list) VECTOR(m88110_reset_handler) /* 00 */ VECTOR(m88110_interrupt_handler) /* 01 */ |