Apple2-IO-RPi/RaspberryPi/apple2driver/handlers/menu.go
2021-10-31 14:35:55 -04:00

18 lines
273 B
Go
Executable File

package handlers
import (
"fmt"
)
func MenuCommand() {
fmt.Printf("Sending menu...\n")
comm.WriteString("Apple2-IO-RPi\r" +
"(c)2020-2021 Terence J. Boldt\r" +
"\r" +
"Select an option:\r" +
"\r" +
"1. Boot\r" +
"2. Command Line\r" +
"3. Load File\r")
}