From b480537a274ed15d71a59f5babf194a651c78910 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 28 Sep 2024 11:06:36 -0400 Subject: keyboard input buffering --- memory.hpp | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'memory.hpp') diff --git a/memory.hpp b/memory.hpp index 8955262..0467bf6 100644 --- a/memory.hpp +++ b/memory.hpp @@ -1,6 +1,37 @@ #ifndef MEMORY_HPP #define MEMORY_HPP +#include +#include + +template +struct kallocator +{ + using value_type = T; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + using propagate_on_container_move_assignment = std::true_type; + using is_always_equal = std::true_type; + + template + struct rebind { + typedef kallocator other; + }; + + kallocator() = default; + + template + kallocator(const kallocator&) noexcept {} + + T* allocate(std::size_t n) { + return new T[n]; + } + + void deallocate([[maybe_unused]] T* p, [[maybe_unused]] std::size_t n) { + + } +}; + void memory_initialize(); #endif // MEMORY_HPP -- cgit v1.2.3