in kernel/ptrace_h.c [239:247]
void user_enable_single_step(struct task_struct *child)
{
unsigned short *next;
next = nextpc(child, (unsigned short *)h8300_get_reg(child, PT_PC));
child->thread.breakinfo.addr = next;
child->thread.breakinfo.inst = *next;
*next = BREAKINST;
}