Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. term.clear()
  2.  
  3. function runBootImage(bootimgpath)
  4. if not bootimgpath then
  5. error("Boot image dosen't exist")
  6. else
  7. if fs.exist(bootimgpath) == false then
  8. error("Boot image dosen't exist")
  9. else
  10. shell.run(bootimgpath)
  11. end
  12. end
  13. end
  14.  
  15. print("rBIOS")
  16. print("by Raffina | rBIOS 2018 0.1")
  17. print("Computer ID: " os.getComputerID())
  18.  
  19. while true do
  20. term.setCursorPos(1, 1)
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement