Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Function to display Doggy OS Legacy Bootloader menu screen
- local function displayLegacyBootloader()
- -- Clear the terminal screen
- term.clear()
- -- Set cursor position to the top-left corner
- term.setCursorPos(1, 1)
- -- Print the bootloader title
- print("Doggy OS Legacy Bootloader")
- print("") -- Empty line for spacing
- -- Print the bootloader ASCII art
- print(" _________________")
- print(" | | ___________ |o|")
- print(" | | ___________ | |")
- print(" | | ___________ | |")
- print(" | | ___________ | |")
- print(" | |_____________| |")
- print(" | _______ |")
- print(" | | | ||")
- print(" | DD | | V|")
- print(" |____|_______|____|")
- print("") -- Empty line for spacing
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement