/*1* arch/sh/kernel/debugtraps.S2*3* Debug trap jump tables for SuperH4*5* Copyright (C) 2006 - 2008 Paul Mundt6*7* This file is subject to the terms and conditions of the GNU General Public8* License. See the file "COPYING" in the main directory of this archive9* for more details.10*/11#include <linux/sys.h>12#include <linux/linkage.h>1314#if !defined(CONFIG_KGDB)15#define singlestep_trap_handler debug_trap_handler16#endif1718#if !defined(CONFIG_SH_STANDARD_BIOS)19#define sh_bios_handler debug_trap_handler20#endif2122.data2324ENTRY(debug_trap_table)25.long debug_trap_handler /* 0x30 */26.long debug_trap_handler /* 0x31 */27.long debug_trap_handler /* 0x32 */28.long debug_trap_handler /* 0x33 */29.long debug_trap_handler /* 0x34 */30.long debug_trap_handler /* 0x35 */31.long debug_trap_handler /* 0x36 */32.long debug_trap_handler /* 0x37 */33.long debug_trap_handler /* 0x38 */34.long debug_trap_handler /* 0x39 */35.long debug_trap_handler /* 0x3a */36.long debug_trap_handler /* 0x3b */37.long breakpoint_trap_handler /* 0x3c */38.long singlestep_trap_handler /* 0x3d */39.long bug_trap_handler /* 0x3e */40.long sh_bios_handler /* 0x3f */414243