URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-ppc/] [delay.h] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _PPC_DELAY_H #define _PPC_DELAY_H extern __inline__ void __delay(unsigned long ); extern __inline__ void __udelay(unsigned long ); extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c) { return (a*b)/c; } #endif /* defined(_PPC_DELAY_H) */
Go to most recent revision | Compare with Previous | Blame | View Log