mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-27 10:00:17 -06:00
26 lines
360 B
C
26 lines
360 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef HWCTRL_H
|
|
#define HWCTRL_H
|
|
/*
|
|
* Provides miscellaneous hardware control functions.
|
|
*
|
|
* Copyright (C) 2020 Martin Whitaker.
|
|
*/
|
|
|
|
/*
|
|
* Reboots the machine.
|
|
*/
|
|
void reboot(void);
|
|
|
|
/*
|
|
* Turns off the floppy motor.
|
|
*/
|
|
void floppy_off();
|
|
|
|
/*
|
|
* Disables the screen cursor.
|
|
*/
|
|
void cursor_off();
|
|
|
|
#endif // HWCTRL_H
|