view target-utils/libcommon/cmd_dieid.c @ 753:7f68d2ab0d33

SIM_TOOLKIT re-enabled: the SIM entity code is broken without it
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sat, 11 Oct 2014 21:24:24 +0000
parents 8387dcba945d
children
line wrap: on
line source

#include "types.h"

void
cmd_dieid()
{
	u32 addr;

	for (addr = 0xFFFEF010; addr <= 0xFFFEF016; addr += 2)
		printf("%08X: %04X\n", addr, *(volatile u16 *)addr);
}