Advertisement
DOGGYWOOF

Untitled

Jul 9th, 2024
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. -- Function to display Doggy OS Legacy Bootloader menu screen
  2. local function displayLegacyBootloader()
  3. -- Clear the terminal screen
  4. term.clear()
  5.  
  6. -- Set cursor position to the top-left corner
  7. term.setCursorPos(1, 1)
  8.  
  9. -- Print the bootloader title
  10. print("Doggy OS Legacy Bootloader")
  11. print("") -- Empty line for spacing
  12.  
  13. -- Print the bootloader ASCII art
  14. print(" _________________")
  15. print(" | | ___________ |o|")
  16. print(" | | ___________ | |")
  17. print(" | | ___________ | |")
  18. print(" | | ___________ | |")
  19. print(" | |_____________| |")
  20. print(" | _______ |")
  21. print(" | | | ||")
  22. print(" | DD | | V|")
  23. print(" |____|_______|____|")
  24. print("") -- Empty line for spacing
  25. end
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement