mirror of
https://github.com/Comp211-SP24/lab-05-Rushilwiz.git
synced 2025-04-03 03:50:16 -04:00
formatted mem/cache
This commit is contained in:
parent
d30900c18a
commit
719bb0e4df
2
cache.c
2
cache.c
|
@ -1,4 +1,4 @@
|
|||
// PID: 730677144
|
||||
// PID: 730677144
|
||||
// I pledge the COMP 211 honor code.
|
||||
|
||||
#include <math.h>
|
||||
|
|
6
memory.c
6
memory.c
|
@ -1,4 +1,4 @@
|
|||
// PID: 730677144
|
||||
// PID: 730677144
|
||||
// I pledge the COMP 211 honor code.
|
||||
|
||||
#include <math.h>
|
||||
|
@ -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