#include Stack::Stack(u64 base, usize bytes) : m_base(base), m_bytes(bytes) { } u64 Stack::top() const { return (m_base + m_bytes) - sizeof(void*); }