Source code of Windows XP (NT5)
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.

27 lines
763 B

  1. REM ignore the following
  2. REM files that have .asm extension but are actually include files:
  3. if "%1"=="BUF.ASM" goto done
  4. if "%1"=="COMEQU.ASM" goto done
  5. if "%1"=="COMSEG.ASM" goto done
  6. if "%1"=="COMSW.ASM" goto done
  7. if "%1"=="CTRLC.ASM" goto done
  8. if "%1"=="DEBEQU.ASM" goto done
  9. if "%1"=="DEVSYM.ASM" goto done
  10. if "%1"=="DOSMAC.ASM" goto done
  11. if "%1"=="DOSSEG.ASM" goto done
  12. if "%1"=="DOSSYM.ASM" goto done
  13. if "%1"=="EXEC.ASM" goto done
  14. if "%1"=="FCB.ASM" goto done
  15. if "%1"=="IFEQU.ASM" goto done
  16. if "%1"=="IO.ASM" goto done
  17. if "%1"=="MSDATA.ASM" goto done
  18. if "%1"=="MSHEAD.ASM" goto done
  19. if "%1"=="MSINIT.ASM" goto done
  20. if "%1"=="PROC.ASM" goto done
  21. if "%1"=="STDSW.ASM" goto done
  22. if "%1"=="STRIN.ASM" goto done
  23. if "%1"=="SYSCALL.ASM" goto done
  24. masm %1;
  25. :done