Rev | Line | |
---|
[9] | 1 | #include "syslib.h"
|
---|
| 2 |
|
---|
| 3 | /*===========================================================================*
|
---|
| 4 | * sys_vm_setbuf *
|
---|
| 5 | *===========================================================================*/
|
---|
| 6 | PUBLIC int sys_vm_setbuf(base, size, high)
|
---|
| 7 | phys_bytes base;
|
---|
| 8 | phys_bytes size;
|
---|
| 9 | phys_bytes high;
|
---|
| 10 | {
|
---|
| 11 | message m;
|
---|
| 12 | int result;
|
---|
| 13 |
|
---|
| 14 | m.m4_l1= base;
|
---|
| 15 | m.m4_l2= size;
|
---|
| 16 | m.m4_l3= high;
|
---|
| 17 |
|
---|
| 18 | result = _taskcall(SYSTASK, SYS_VM_SETBUF, &m);
|
---|
| 19 | return(result);
|
---|
| 20 | }
|
---|
| 21 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.