22 #include <sys/cdefs.h> 
   28 #define QACR0 (*(volatile unsigned int *)(void *)0xff000038) 
   31 #define QACR1 (*(volatile unsigned int *)(void *)0xff00003c) 
   41 void sq_clr(
void *dest, 
int n);
 
   53 void * 
sq_cpy(
void *dest, 
void *src, 
int n);
 
void * sq_set16(void *s, uint32 c, int n)
Set a block of memory to a 16-bit value. 
 
unsigned long uint32
32-bit unsigned integer 
Definition: types.h:28
 
void * sq_set32(void *s, uint32 c, int n)
Set a block of memory to a 32-bit value. 
 
void sq_clr(void *dest, int n)
Clear a block of memory. 
 
void * sq_set(void *s, uint32 c, int n)
Set a block of memory to an 8-bit value. 
 
void * sq_cpy(void *dest, void *src, int n)
Copy a block of memory.