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
197B

  1. @echo off
  2. ca65 vim.asm -o vim.o
  3. if errorlevel 1 goto error
  4. ld65 -C vim.cfg vim.o -o vim.prg
  5. if errorlevel 1 goto error
  6. echo built vim.prg successfully.
  7. goto end
  8. :error
  9. echo build failed.
  10. :end

Powered by TurnKey Linux.