formatted mem/cache

This commit is contained in:
Rushil Umaretiya 2024-04-10 19:10:59 -04:00
parent d30900c18a
commit 719bb0e4df
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// PID: 730677144
// PID: 730677144
// I pledge the COMP 211 honor code.
#include <math.h>

View File

@ -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) {