repo: https://github.com/u-boot/u-boot commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91 Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
15 lines
311 B
C
15 lines
311 B
C
#ifndef __ASM_M68K_PROCESSOR_H
|
|
#define __ASM_M68K_PROCESSOR_H
|
|
|
|
#include <asm/ptrace.h>
|
|
#include <asm/types.h>
|
|
|
|
#define _GLOBAL(n)\
|
|
.globl n;\
|
|
n:
|
|
|
|
/* Macros for setting and retrieving special purpose registers */
|
|
#define setvbr(v) asm volatile("movec %0,%%VBR" : : "r" (v))
|
|
|
|
#endif /* __ASM_M68K_PROCESSOR_H */
|