From db82579d3c023c441c895d26d32de3fa039eafa4 Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Fri, 11 Nov 2022 16:28:55 -0800 Subject: Starting to write a real memory subsystem for biggolf. --- memory/line.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'memory/line.h') diff --git a/memory/line.h b/memory/line.h index 3377ec8..82b85f5 100644 --- a/memory/line.h +++ b/memory/line.h @@ -7,9 +7,9 @@ #include "infra/sim.h" namespace memory { - constexpr std::uint64_t LINE_BYTES_LOG2 = 4; + constexpr std::uint64_t LINE_BYTES_LOG2 = 2; constexpr std::uint64_t LINE_BYTES = 1 << LINE_BYTES_LOG2; constexpr std::uint64_t LINE_BYTE_OFFSET_MASK = LINE_BYTES - 1; - typedef std::array line; + typedef std::array line; } -- cgit v1.2.3