Files
MentOS/mentos/inc/drivers/fdc.h
T
2021-11-10 11:14:08 +01:00

23 lines
656 B
C

/// MentOS, The Mentoring Operating system project
/// @file fdc.h
/// @brief Definitions about the floppy.
/// @copyright (c) 2014-2021 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();
/// @}
/// @}