dos_compilers/Borland Turbo C v1/BIOS.H
2024-07-01 13:08:21 -07:00

22 lines
527 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* bios.h
Access to bios services.
Copyright (c) Borland International 1987
All Rights Reserved.
*/
#if __STDC__
#define _Cdecl
#else
#define _Cdecl cdecl
#endif
int _Cdecl bioscom(int cmd, char abyte, int port);
int _Cdecl biosdisk(int cmd, int drive, int head, int track, int sector,
int nsects, void *buffer);
int _Cdecl biosequip(void);
int _Cdecl biosmemory(void);
long _Cdecl biostime(int cmd, long newtime);
int _Cdecl bioskey(int cmd);
int _Cdecl biosprint(int cmd, int abyte, int port);