diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-16 02:54:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-16 02:54:03 +0000 |
commit | 33e72ef503b10a9fc02fa99ada01361def5ac6ac (patch) | |
tree | efce93c259bf71eb87f2642b6076e516852befd9 /sys/arch/i386 | |
parent | 37e4a80c40bd4c6d043b3eae0e71050d287da125 (diff) |
someone send me an i386 assembler book
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/locore.s | 4 | ||||
-rw-r--r-- | sys/arch/i386/isa/icu.s | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index 9ae90b67524..5a972db470f 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -2074,7 +2074,7 @@ calltrap: sti movl $T_ASTFLT,TF_TRAPNO(%esp) call _trap - j 2b + jmp 2b #ifndef DIAGNOSTIC 1: INTRFASTEXIT #else /* DIAGNOSTIC */ @@ -2141,7 +2141,7 @@ syscall1: sti /* Pushed T_ASTFLT into tf_trapno on entry. */ call _trap - j 2b + jmp 2b #ifndef DIAGNOSTIC 1: INTRFASTEXIT #else /* DIAGNOSTIC */ diff --git a/sys/arch/i386/isa/icu.s b/sys/arch/i386/isa/icu.s index 06f4e06e8be..e6a46d28ef1 100644 --- a/sys/arch/i386/isa/icu.s +++ b/sys/arch/i386/isa/icu.s @@ -1,4 +1,4 @@ -/* $OpenBSD: icu.s,v 1.7 1996/08/16 02:51:31 deraadt Exp $ */ +/* $OpenBSD: icu.s,v 1.8 1996/08/16 02:54:02 deraadt Exp $ */ /* $NetBSD: icu.s,v 1.45 1996/01/07 03:59:34 mycroft Exp $ */ /*- @@ -119,7 +119,7 @@ IDTVEC(doreti) sti /* Pushed T_ASTFLT into tf_trapno on entry. */ call _trap - j 2b + jmp 2b 3: INTRFASTEXIT |