home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PCTV1N4.ZIP
/
NEWKEY.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1990-07-11
|
346 b
|
15 lines
{ IsNewKey: A function for determining whether
a 101/102-key keyboard is attached to the
user's system.
(c) 1990 by George W. Seaton
All Rights Reserved }
FUNCTION IsNewKey : Boolean;
BEGIN
IF ((Mem[$0040:$0096] AND $10) = $10) THEN
IsNewKey := TRUE
ELSE
IsNewKey := FALSE;
END;