Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. @echo off
  2. rem Compiler:  NASM
  3. rem Target OS: KolibriOS
  4.  
  5. rem NASM Path:
  6. SET UF_NASM=\nasm
  7.  
  8. if not exist "%UF_NASM%\nasmw.exe" goto Err1
  9. "%UF_NASM%\nasmw" -fbin -t -O5 -i..\ufmodlib\src\ mini.asm
  10. goto TheEnd
  11.  
  12. :Err1
  13. echo Couldn't find nasmw.exe in %UF_NASM%\
  14.  
  15. :TheEnd
  16. pause
  17. @echo on
  18. cls
  19.