view target-utils/c139-lldbg/entryinfo.c @ 416:30f6d1c32c6f

doc/Flash-boot-defect article removed (no longer relevant) This article is no longer relevant because the issue in question only affected one (1) defective FCDEV3B board which was not and never will be sold.
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 26 Oct 2018 07:11:08 +0000
parents e7502631a0f9
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);
}