/* ------------------------------------------- Copyright SoftwareLabs ------------------------------------------- */ #include #include #include namespace NewOS { /// @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 NewOS