mirror of
https://github.com/Comp211-SP24/lab-05-Rushilwiz.git
synced 2025-04-03 20:00:21 -04:00
formatted mem/cache
This commit is contained in:
parent
d30900c18a
commit
719bb0e4df
4
memory.c
4
memory.c
|
@ -16,11 +16,11 @@ unsigned int addr_bits;
|
|||
|
||||
int number_of_blocks(unsigned int addr_bits,
|
||||
unsigned int num_block_offset_bits) {
|
||||
if (addr_bits < num_block_offset_bits || num_block_offset_bits <= 0 || addr_bits <= 0)
|
||||
if (addr_bits < num_block_offset_bits || num_block_offset_bits <= 0 ||
|
||||
addr_bits <= 0)
|
||||
return FAIL;
|
||||
|
||||
return exp2(addr_bits - num_block_offset_bits);
|
||||
|
||||
}
|
||||
|
||||
int read_memory_file(char* file_name) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user