kOS (Kerbal Operating System) programs https://ksp-kos.github.io/KOS/
game
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.

boot.ks 282B

123456789101112
  1. clearscreen.
  2. if core:tag:length > 0 {
  3. SET bootfile TO core:tag + ".ks".
  4. if volume(0):exists(bootfile) {
  5. print "Running 0:/"+bootfile.
  6. RUNPATH("0:/"+bootfile).
  7. } else {
  8. print "Bootfile 0:/"+bootfile+" does not exists".
  9. }
  10. } else {
  11. print "No tag name. Unable to boot...".
  12. }