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.

16 lines
484 B

  1. @echo off
  2. echo WOWASMC.CMD : Generating wowc.asm file from wowasmc.asm
  3. cd c
  4. sed -f ..\wowasm.sed %1.asm > %2.asm
  5. echo WOWASMC.CMD : making wowc.obj to filter Jump out of range erorrs
  6. cd ..
  7. nmake /i c\%2.obj | qgrep -y a2053 > wowtmp1.sed
  8. del %2.obj
  9. sed -n -e s/^c\\%2.[Aa][Ss][Mm].\([0-9][0-9]*\).*$/\1s\/SHORT\/\/p/p wowtmp1.sed > wowtmp2.sed
  10. echo 1n>>wowtmp2.sed
  11. cd c
  12. sed -f ..\wowtmp2.sed %2.asm > wowtmp3.sed
  13. copy wowtmp3.sed %2.asm
  14. del wowtmp?.sed ..\wowtmp*.sed
  15. cd ..
  16. @echo on