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.

11 lines
409 B

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