getrunmd.pp 493 B

1234567891011121314151617181920
  1. uses
  2. go32;
  3. begin
  4. case (get_run_mode) of
  5. rm_unknown :
  6. Writeln('Unknown environment found');
  7. rm_raw :
  8. Writeln('You are currently running in raw mode ',
  9. '(without HIMEM)');
  10. rm_xms :
  11. Writeln('You are currently using HIMEM.SYS only');
  12. rm_vcpi :
  13. Writeln('VCPI server detected. You''re using HIMEM and ',
  14. 'EMM386');
  15. rm_dpmi :
  16. Writeln('DPMI detected. You''re using a DPMI host like ',
  17. 'a windows DOS box or CWSDPMI');
  18. end;
  19. end.