home *** CD-ROM | disk | FTP | other *** search
- { (C) Copyright 1986-1992 MetaWare Incorporated; Santa Cruz, CA 95060. }
-
- pragma c_include('implement.pf');
- package Host;
-
- type CPU_type = (_8086, _32000, _370, _68000, _VAX, _RT, _68020, _V60, _386);
-
- type System_type = (_MSDOS, _UNIX, _VMS, _CONCURRENT{DOS 286 from DRI}, _CMS);
-
- pragma data(import);
- {
- CPU and System on which the current program is executing.
- }
- var Host_CPU: CPU_type;
- Host_system: System_type;
- pragma data();
- pragma alias(Host_CPU,Implement.RTE || 'CPU');
- pragma alias(Host_system,Implement.RTE || 'OS');
- end;
-