home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
JNFB88.ZIP
/
GETCPU.ARC
/
WHATCPU.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
|
1987-09-21
|
344 b
|
19 lines
PROGRAM WHATCPU;
VAR
CPUTYPE: integer;
{$L GETCPU}
FUNCTION GetCPU : integer; external;
BEGIN
CPUTYPE := GetCPU;
write('Processor is [80');
CASE CPUTYPE of
386: writeln('386]');
286: writeln('286]');
186: writeln('188/86]');
86 : writeln('88/86]');
END
END.