diff options
| author | bd <bdunaisky@umass.edu> | 2025-03-23 17:47:34 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-23 17:47:34 +0000 | 
| commit | fab7d9dcf249762eeac89a11487856e7569c66d5 (patch) | |
| tree | 79287fc411c4c1195654560f494091ec38781e8a /inc | |
| parent | cef3753c74ec68ed0d99c1ae07af042dfc964344 (diff) | |
| parent | 28f9c5e13d77ba1f160d83373144b691da75d7e2 (diff) | |
Merge pull request #30 from bdunahu/bdunahu
Add controller.h, implementation and tests.
Diffstat (limited to 'inc')
| -rw-r--r-- | inc/definitions.h | 7 | ||||
| -rw-r--r-- | inc/dram.h | 2 | 
2 files changed, 6 insertions, 3 deletions
| diff --git a/inc/definitions.h b/inc/definitions.h index eced554..ff2f7c6 100644 --- a/inc/definitions.h +++ b/inc/definitions.h @@ -32,7 +32,7 @@  #define L1_CACHE_LINES static_cast<int>(pow(2, L1_CACHE_LINE_SPEC))  /** - * The total number of cycles a memory access takes. + * The total number of cycles a memory access takes   */  #define MEM_DELAY 3 @@ -42,6 +42,11 @@  #define L1_CACHE_DELAY 0  /** + * The number of general purpose registers + */ +#define GPR_NUM 16 + +/**   * Return the N least-significant bits from integer K using a bit mask   * @param the integer to be parsed   * @param the number of bits to be parsed @@ -9,8 +9,6 @@ class Dram : public Storage    public:  	/**  	 * Constructor. -	 * @param The number of `lines` contained in memory. The total number of -	 * words is this number multiplied by LINE_SIZE.  	 * @param The number of clock cycles each access takes.  	 * @return A new memory object.  	 */ | 
