Files
MentOS/mentos/inc/drivers/fdc.h
T
Enrico Fraccaroli (Galfurian) 1b2bc49d41 Update license and remove unused files.
2022-01-27 15:12:36 -05:00

22 lines
590 B
C

/// @file fdc.h
/// @brief Definitions about the floppy.
/// @copyright (c) 2014-2022 This file is distributed under the MIT License.
/// See LICENSE.md for details.
/// @addtogroup drivers Device Drivers
/// @{
/// @addtogroup fdc Floppy Disc Controller (FDC)
/// @brief Routines for interfacing with the floppy disc controller.
/// @{
#pragma once
/// @brief Initializes the floppy disk controller.
/// @return 0 on success, 1 on error.
int fdc_initialize();
/// @brief De-initializes the floppy disk controller.
/// @return 0 on success, 1 on error.
int fdc_finalize();
/// @}
/// @}