diff options
author | bd <bdunahu@operationnull.com> | 2025-03-11 19:02:55 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-11 19:02:55 -0400 |
commit | fb7735049f571ac45a193481e962f497b4759fa4 (patch) | |
tree | 8721f192b627001a3d47af2157ba14b97c52d645 /src/utils/utils.cc | |
parent | df803d2ccc6a3e1e112cc88feb6c8b84743073b6 (diff) |
fix lots of bugs
Diffstat (limited to 'src/utils/utils.cc')
-rw-r--r-- | src/utils/utils.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/utils/utils.cc b/src/utils/utils.cc index 87ce488..ebbc1e9 100644 --- a/src/utils/utils.cc +++ b/src/utils/utils.cc @@ -7,8 +7,7 @@ void get_bit_fields(int address, int *tag, int *index, int *offset) { *tag = GET_MID_BITS( - address, LINE_SPEC + L1_CACHE_LINE_SPEC, - MEM_LINE_SPEC + LINE_SPEC + L1_CACHE_LINE_SPEC); + address, L1_CACHE_LINE_SPEC + LINE_SPEC, MEM_WORD_SPEC); *index = GET_MID_BITS(address, LINE_SPEC, L1_CACHE_LINE_SPEC + LINE_SPEC); *offset = GET_LS_BITS(address, LINE_SPEC); } @@ -31,7 +30,7 @@ const std::string string_format(const char *const zcFormat, ...) int wrap_address(int address) { if (address < 0){ - return ((address % MEM_LINES) + MEM_LINES) % MEM_LINES; + return ((address % MEM_WORDS) + MEM_WORDS) % MEM_WORDS; } - return address % MEM_LINES; + return address % MEM_WORDS; } |