diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-18 07:40:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-18 07:40:04 +0000 |
commit | 888b63e1743ef4b4277b88169301e0b5c1445e16 (patch) | |
tree | 5b9d1c51879f3e1f909c17e6ec7c2f6050ac92e1 /sys/arch/i386/stand/libsa/debug_md.h | |
parent | c2ee71fae9cec63f4a94c921619dc28d1c5b5032 (diff) |
i386 bootblocks that work for 2.3. A tale too long to tell
Diffstat (limited to 'sys/arch/i386/stand/libsa/debug_md.h')
-rw-r--r-- | sys/arch/i386/stand/libsa/debug_md.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/i386/stand/libsa/debug_md.h b/sys/arch/i386/stand/libsa/debug_md.h index a6b82672440..b88e4ea1bf3 100644 --- a/sys/arch/i386/stand/libsa/debug_md.h +++ b/sys/arch/i386/stand/libsa/debug_md.h @@ -1,4 +1,4 @@ -/* $OpenBSD: debug_md.h,v 1.3 1997/04/09 08:39:34 mickey Exp $ */ +/* $OpenBSD: debug_md.h,v 1.4 1998/04/18 07:39:47 deraadt Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -33,15 +33,17 @@ */ #define REG_NAMES \ - "eax", "ecx", "edx", "ebx", "esp", "ebp", "esi", "edi", \ - "eip", "eflags", "cs", "ss", "ds", "es", "fs", "gs" + "eax", "ecx", "edx", "ebx", "esp", \ + "ebp", "esi", "edi", "eip", "eflags", \ + "cs", "ss", "ds", "es", "fs", \ + "gs" #define REG_VALUES(r) \ &(r).r_eax, &(r).r_ecx, &(r).r_edx, &(r).r_ebx, &(r).r_esp, \ &(r).r_ebp, &(r).r_esi, &(r).r_edi, &(r).r_eip, &(r).r_eflags, \ &(r).r_cs , &(r).r_ss, &(r).r_ds, &(r).r_es, &(r).r_fs, \ &(r).r_gs #define TRAP_NAMES \ - "privileged instruction", "breakpoint trap", "arithmetic trap", \ + "invalid opcode fault", "breakpoint trap", "arithmetic trap", \ "asynchronous system trap", "protection fault", "trace trap", \ "page fault", "alignment fault", "integer divide fault", \ "non-maskable interrupt", "overflow trap", "bounds check fault", \ |