home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
basic
/
library
/
qb_pds
/
qbfaqr01
/
graphic
/
isclrmon.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1992-08-09
|
233 b
|
11 lines
DECLARE FUNCTION IsClrMon ()
FUNCTION IsClrMon STATIC
'Captured from post by Joe Negron
'If 0000:0463 = B4, monitor is monochrome, else color
DEF SEG = 0
IsClrMon = PEEK(&H463) <> &HB4
DEF SEG
END FUNCTION