Luna/libluna/src/Stack.cpp

11 lines
171 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)
{
}
2023-01-10 18:31:41 +00:00
u64 Stack::top() const
2022-12-07 13:48:24 +00:00
{
return (m_base + m_bytes) - sizeof(void*);
2023-01-02 12:07:29 +00:00
}