URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [uclinux/] [uClinux-2.0.x/] [include/] [asm-ppc/] [delay.h] - Rev 1765
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