/* ------------------------------------------- Copyright (C) 2024, Theater Quality Corp, all rights reserved. ------------------------------------------- */ namespace Kernel { template T* DMAWrapper::operator->() { return fAddress; } template T* DMAWrapper::Get(const UIntPtr offset) { return reinterpret_cast((UIntPtr)fAddress + offset); } } // namespace Kernel