summaryrefslogtreecommitdiff
path: root/arch/sh/include/cpu-sh2a/cpu/ubc.h
blob: 3371f9042184e387ca44345ada6a31dfe2fc7325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __ARCH_SH_CPU_UBC_H__
#define __ARCH_SH_CPU_UBC_H__

enum {
	SH_BREAKPOINT_READ	= (1 << 2),
	SH_BREAKPOINT_WRITE	= (1 << 3),
	SH_BREAKPOINT_RW	= SH_BREAKPOINT_READ | SH_BREAKPOINT_WRITE,

	SH_BREAKPOINT_LEN_1	= (1 << 0),
	SH_BREAKPOINT_LEN_2	= (1 << 1),
	SH_BREAKPOINT_LEN_4	= SH_BREAKPOINT_LEN_1 | SH_BREAKPOINT_LEN_2,
};

#endif /* __ARCH_SH_CPU_UBC_H__ */