Skip to content

Commit

Permalink
use fixed size type for memory address
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarreiro committed Jan 10, 2025
1 parent 29291f5 commit 6aa00c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ enum class MemoryTag {
U128,
};

using MemoryAddress = std::size_t;
using MemoryAddress = uint32_t;
using MemoryValue = FF;
constexpr auto MemoryAddressTag = MemoryTag::U32;

Expand Down

0 comments on commit 6aa00c1

Please sign in to comment.