25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

18 satır
353B

  1. @echo off
  2. setlocal
  3. where cl65 >nul 2>nul
  4. if errorlevel 1 (
  5. echo cl65 was not found on PATH.
  6. echo Install cc65 or add its bin directory to PATH.
  7. exit /b 1
  8. )
  9. cl65 -t c64 -DMOUSE_DRIVER=c64_1351_mou -O -o mouse_driver_demo.prg mouse_driver_demo.c
  10. if errorlevel 1 (
  11. echo build failed.
  12. exit /b 1
  13. )
  14. echo built mouse_driver_demo.prg successfully.

Powered by TurnKey Linux.