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.

18 lines
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.