memtest86plus/system/hwctrl.h
2020-05-24 21:30:55 +01:00

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