9
0
Fork 0
barebox/arch/arm/include/asm/common.h

20 lines
321 B
C

#ifndef __ASM_ARM_COMMON_H
#define __ASM_ARM_COMMON_H
#define ARCH_SHUTDOWN
static inline unsigned long get_pc(void)
{
unsigned long pc;
__asm__ __volatile__(
"mov %0, pc\n"
: "=r" (pc)
:
: "memory");
return pc;
}
#endif /* __ASM_ARM_COMMON_H */