/* ------------------------------------------- Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved. ------------------------------------------- */ #include #include #include namespace Kernel { /***********************************************************************************/ /// @brief constructs a new PRD. /// @param prd PRD reference. /// @note This doesnt construct a valid, please fill it by yourself. /***********************************************************************************/ void construct_prdt(Ref& prd) { prd.Leak().fPhysAddress = 0x0; prd.Leak().fSectorCount = 0x0; prd.Leak().fEndBit = 0x0; } } // namespace Kernel