source:
trunk/minix/lib/syslib/sys_int86.c@
20
| Last change on this file since 20 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 421 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | #include "syslib.h" |
| 2 | ||
| 3 | /*===========================================================================* | |
| 4 | * sys_int86 * | |
| 5 | *===========================================================================*/ | |
| 6 | PUBLIC int sys_int86(reg86p) | |
| 7 | struct reg86u *reg86p; | |
| 8 | { | |
| 9 | message m; | |
| 10 | int result; | |
| 11 | ||
| 12 | m.m1_p1= (char *)reg86p; | |
| 13 | ||
| 14 | result = _taskcall(SYSTASK, SYS_INT86, &m); | |
| 15 | return(result); | |
| 16 | } | |
| 17 |
Note:
See TracBrowser
for help on using the repository browser.