Advertisement
Guest User

Untitled

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