remove SYS_MAPDMA

This commit is contained in:
David van Moolenbroek
2010-01-19 21:24:42 +00:00
parent f175410902
commit 53a6e039de
8 changed files with 0 additions and 74 deletions

View File

@@ -1,19 +0,0 @@
#include "syslib.h"
/*===========================================================================*
* sys_mapdma *
*===========================================================================*/
PUBLIC int sys_mapdma(vir_addr, bytes)
vir_bytes vir_addr; /* address in bytes with segment*/
vir_bytes bytes; /* number of bytes to be copied */
{
message m;
int result;
m.CP_SRC_ADDR = vir_addr;
m.CP_NR_BYTES = bytes;
result = _taskcall(SYSTASK, SYS_MAPDMA, &m);
return(result);
}