mirror of
https://github.com/tjboldt/Apple2-IO-RPi.git
synced 2024-11-22 17:33:22 +00:00
5910d66fa2
* Improve vt100 support to make vim work * Fix home and add line clear * Auto boot with recovery
19 lines
381 B
Go
Executable File
19 lines
381 B
Go
Executable File
// Copyright Terence J. Boldt (c)2020-2021
|
|
// Use of this source code is governed by an MIT
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// This file is contains the handler for displaying the menu of choices on
|
|
// the Apple II
|
|
|
|
package handlers
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// ResetCommand responds with zero
|
|
func ResetCommand() {
|
|
fmt.Printf("Reset request\n")
|
|
comm.WriteByte(0)
|
|
}
|