Exemplo n.º 1
0
static int or1k_resume(struct target *target, int current,
		uint32_t address, int handle_breakpoints, int debug_execution)
{
	return or1k_resume_or_step(target, current, address,
				   handle_breakpoints,
				   debug_execution,
				   NO_SINGLE_STEP);
}
Exemplo n.º 2
0
static int or1k_step(struct target *target, int current,
		     uint32_t address, int handle_breakpoints)
{
	return or1k_resume_or_step(target, current, address,
				   handle_breakpoints,
				   0,
				   SINGLE_STEP);

}
Exemplo n.º 3
0
static int or1k_resume(struct target *target, int current,
		uint32_t address, int handle_breakpoints, int debug_execution)
{
	return or1k_resume_or_step(target, current, address, 
				   handle_breakpoints, 
				   debug_execution, 
				   /* Single step? No. */
				   0);
}
Exemplo n.º 4
0
static int or1k_step(struct target *target, int current,
		     uint32_t address, int handle_breakpoints)
{
	return or1k_resume_or_step(target, current, address, 
				   handle_breakpoints, 
				   /* TARGET_EVENT_RESUMED:
				      target resumed to execute user code */
				   0,
				   /* Single step? Yes. */
				   1);
	
}