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 line
233B

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

Powered by TurnKey Linux.