home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
asm
/
cputype
/
cputype.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-04-01
|
225 b
|
17 lines
#include <stdio.h>
extern short cpu( void );
main()
{
unsigned short TypeofCPU;
TypeofCPU = cpu();
printf("This machine has an 80%d processor.\n\n", TypeofCPU );
return;
}