URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [sys/] [go32/] [bdos.c] - Rev 1775
Go to most recent revision | Compare with Previous | Blame | View Log
#include <errno.h> #include "dos.h" bdos(int func, unsigned dx, unsigned al) { union REGS r; r.x.dx = dx; r.h.ah = func; r.h.al = al; int86(0x21, &r, &r); return r.x.ax; }
Go to most recent revision | Compare with Previous | Blame | View Log