/** * @file Ide.h * @author Satoshi Tanda (tanda.sat@gmail.com) * @brief Write data into the IDE storage device. * @date 2022-01-16 * * @copyright Copyright (c) 2022, Satoshi Tanda. All rights reserved. * */ #pragma once #include "Common/Common.h" /** * @brief Writes 4KB of data onto at the specified offset of the IDE master device. * * @param Offset - The offset in the device to start writing. * @param Data - The pointer to 4KB data to write to the device. */ VOID IdeWrite4Kb ( IN UINT64 Offset, IN CONST UINT8* Data );