1
0
Fork 0
forked from len0rd/rockbox

New target - iPod Video.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8261 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-12-18 13:04:00 +00:00
parent 3f9789b45a
commit 2a7bd9fb7b
12 changed files with 334 additions and 11 deletions

View file

@ -34,6 +34,8 @@ extern long cpu_frequency;
#define outl(a,b) (*(volatile unsigned long *) (b) = (a))
#define inb(a) (*(volatile unsigned char *) (a))
#define outb(a,b) (*(volatile unsigned char *) (b) = (a))
#define inw(a) (*(volatile unsigned short *) (a))
#define outw(a,b) (*(volatile unsigned short *) (b) = (a))
static inline void udelay(unsigned usecs)
{
unsigned start = inl(0x60005010);