view target-utils/c139-lldbg/entryinfo.c @ 991:5cff3579814c

target-utils: libbase factored out of libcommon The library dependency order is now strictly unidirectional
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Wed, 30 Dec 2015 20:48:12 +0000
parents d7830aee0d35
children
line wrap: on
line source

#include "types.h"

u32 lldbg_entry_cpsr;
u32 lldbg_entry_sp;

void
cmd_entryinfo()
{
	printf("CPSR on entry: %08X\n", lldbg_entry_cpsr);
	printf("SP on entry after register save: %08X\n", lldbg_entry_sp);
}