From 719bb0e4df5c02b1f2cda08da1b92019e68041ba Mon Sep 17 00:00:00 2001 From: Rushil Umaretiya Date: Wed, 10 Apr 2024 19:10:59 -0400 Subject: [PATCH] formatted mem/cache --- cache.c | 2 +- memory.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cache.c b/cache.c index 9987716..aa16e9a 100644 --- a/cache.c +++ b/cache.c @@ -1,4 +1,4 @@ -// PID: 730677144 +// PID: 730677144 // I pledge the COMP 211 honor code. #include diff --git a/memory.c b/memory.c index 1cb429b..1616f88 100644 --- a/memory.c +++ b/memory.c @@ -1,4 +1,4 @@ -// PID: 730677144 +// PID: 730677144 // I pledge the COMP 211 honor code. #include @@ -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) {