source: trunk/minix/lib/syslib/sys_int86.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 421 bytes
Line 
1#include "syslib.h"
2
3/*===========================================================================*
4 * sys_int86 *
5 *===========================================================================*/
6PUBLIC int sys_int86(reg86p)
7struct 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.