URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-armnommu/] [procinfo.h] - Rev 1765
Compare with Previous | Blame | View Log
/* * linux/include/asm-arm/procinfo.h * * Copyright (C) 1996 Russell King */ #ifndef __ASM_PROCINFO_H #define __ASM_PROCINFO_H #include <asm/proc-fns.h> #define F_MEMC (1<<0) #define F_MMU (1<<1) #define F_32BIT (1<<2) #define F_CACHE (1<<3) #define F_IOEB (1<<31) #ifndef __ASSEMBLER__ struct armversions { unsigned long id; unsigned long mask; unsigned long features; const char *manu; const char *name; const struct processor *proc; }; #endif #endif