home *** CD-ROM | disk | FTP | other *** search
- CLS
- PRINT " * System Checker * "
-
- DEF SEG = &HF000
- id% = PEEK(&HFFFE)
- PRINT " Your system is a"; id%
-
- SELECT CASE id%
- CASE IS = 255: System$ = "Just an other ordinary PC"
- CASE IS = 254: System$ = "An XT or Portable PC"
- CASE IS = 253: System$ = "PC Jr."
- CASE IS = 252: System$ = "AT , XT286 , PS/2 with 80286"
- CASE IS = 251: System$ = "Latest Model XT."
- CASE IS = 250: System$ = "PS/2 Model 30"
- CASE IS = 249: System$ = "PC Convertible"
- CASE IS = 248: System$ = "PS/2 with 80386"
- CASE ELSE: System$ = "Unknown ! , Please send a message to author,marked"
-
- END SELECT
-
- PRINT " Better known as a : "; System$
-
- '-------------------------------------------------------------------------
- '- 'Please,if your system is something else than in the listing above,will
- 'be so kind to send me a message on Rime at TACOASD ????
- 'I'll only need the id% number , and the system configuration you use.
- 'because I'm writing a programm for my boss,and I KNOW it's gonna be
- 'copied I will maken only work at an 286 AT (That's what he has !)
- 'But ANY information on this subject is welcome !
- 'You can send your message to TACOASD and write it to Rob Vissersdijk.
- 'That goes for the Dutch TacoNet Members also !
- ' ~~~~~~~
- '-------------------------------------------------------------------------
-
-