Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
962 B

  1. ;/*
  2. ; * Microsoft Confidential
  3. ; * Copyright (C) Microsoft Corporation 1991
  4. ; * All Rights Reserved.
  5. ; */
  6. ; SCCSID = @(#)stdsw.asm 1.1 85/04/10
  7. ; Use the switches below to produce the standard Microsoft version or the IBM
  8. ; version of the operating system
  9. ;include EDLVERS.INC ;IBM/MSVER/JAPVER switches
  10. WANG EQU FALSE
  11. Rainbow EQU FALSE
  12. ; Set this switch to cause DOS to move itself to the end of memory
  13. HIGHMEM EQU FALSE
  14. IF IBM
  15. ESCCH EQU 0 ; character to begin escape seq.
  16. CANCEL EQU 27 ;Cancel with ESCAPE
  17. TOGLPRN EQU TRUE ;One key toggles printer echo
  18. ZEROEXT EQU TRUE
  19. ELSE
  20. IF WANG ;Are we assembling for WANG?
  21. ESCCH EQU 1FH ;Yes. Use 1FH for escape character
  22. ELSE
  23. ESCCH EQU 1BH
  24. ENDIF
  25. CANCEL EQU "X"-"@" ;Cancel with Ctrl-X
  26. TOGLPRN EQU FALSE ;Separate keys for printer echo on
  27. ;and off
  28. ZEROEXT EQU TRUE
  29. ENDIF
  30.