Luna/luna/src/Stack.cpp

10 lines
164 B
C++
Raw Normal View History

2022-12-07 13:48:24 +00:00
#include <luna/Stack.h>
Stack::Stack(u64 base, usize bytes) : m_base(base), m_bytes(bytes)
{
}
u64 Stack::top()
{
return (m_base + m_bytes) - sizeof(void*);
}