From 6d53f4a6ae27555e85182551bbcdca3818785b4c Mon Sep 17 00:00:00 2001 From: Justin Hibbits Date: Sun, 5 Apr 2015 16:35:13 +0000 Subject: [PATCH] Missed this in r281096 as well. Renumber EXC_DEBUG to be above EXC_LAST, so as not to conflict with AIM trap vectors. --- sys/powerpc/include/trap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/powerpc/include/trap.h b/sys/powerpc/include/trap.h index b3391b14463e..3ca4b136b6b0 100644 --- a/sys/powerpc/include/trap.h +++ b/sys/powerpc/include/trap.h @@ -85,7 +85,7 @@ #define EXC_DTMISS 0x1100 /* Data TLB Miss */ #define EXC_ITMISS 0x1200 /* Instruction TLB Miss */ #define EXC_APU 0x1300 /* Auxiliary Processing Unit */ -#define EXC_DEBUG 0x2000 /* Debug trap */ +#define EXC_DEBUG 0x2f10 /* Debug trap */ #define EXC_LAST 0x2f00 /* Last possible exception vector */