blob: b4bdb2fd5bc02e756be56fb52d48182f7f8eab5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "definitions.h"
#include "utils.h"
void get_bit_fields(int address, int *tag, int *index, int *offset)
{
*tag =
MID(address, LINE_SPEC + L1_CACHE_SPEC,
MEM_SPEC + LINE_SPEC + L1_CACHE_SPEC);
*index = MID(address, LINE_SPEC, L1_CACHE_SPEC + LINE_SPEC);
*offset = LAST(address, LINE_SPEC);
}
|